kc3-lang/linenoise/linenoise.h

Branch :


Log

Author Commit Date CI Message
c9123ec3 2023-03-26 13:23:59 Multiplexing: hide/show current line.
4261898b 2020-03-02 17:06:38 A few improvements to mask mode.
514b09cd 2020-02-29 12:30:55 add mask input mode Signed-off-by: lifubang <lifubang@acmcoder.com>
2eb49568 2016-04-13 12:19:04 Clear hints after newline.
ae5f793e 2016-04-12 18:08:33 linenoiseFree() API introduced.
12a8680d 2016-04-12 17:59:33 Hints WIP
80fd0569 2015-04-13 09:38:43 Version 1.0 Linenoise is used in multiple projects for enough time, let's tag this commit with a version number as requested into issue #88, so that we have an initial reference. Given the nature of the library, the version was also added in the linenoise C and header file as well so that it is easy to realize for people having a copy embedded somewhere if they are using the latest version.
cf1bdf5f 2014-10-07 15:22:48 License file added. However the files linenose.c and linenose.h already had inline licenses.
828b9dac 2014-09-03 00:02:09 Remove trailing spaces from source code.
f698ec47 2014-03-13 10:08:39 Rename Scan codes -> Key codes. What we print in debug mode using the option (now) called --keycodes are not the scan codes, but the key codes returned by the terminal (a more higher level representation of the keys pressed). This commit fixes the word used.
bbcf9bf2 2014-03-12 23:38:40 Scan codes debugging functionality. ./linenoise_example --scancodes
fb238590 2014-01-06 11:01:41 Add extern "C" around linenoise.h when compiled as C++
9031c808 2014-01-28 00:53:26 use const char * when modification isn't necessary
16d398e6 2013-02-07 16:06:16 Experimental multi-line editing capabilities.
02d79351 2011-03-30 17:08:20 switched to two-clause simplified BSD license
7f669091 2010-12-01 11:11:55 Ctrl-l support to clear the screen. New sequences added documented.
f4508efb 2010-11-30 11:34:06 Pieter Noordhuis copyright notice added, since this was a major contribution. README updated.
493a5501 2010-11-29 18:52:55 Minimal framework for autocompletion
ce845468 2010-07-07 18:26:23 Support API to save/load history on file
9a986552 2010-03-23 13:49:32 now the API to add an history entry has a const argument
2c54c88c 2010-03-22 17:24:28 API converted to be readline alike. Ctrl-d behavior fixed.
6de19082 2010-03-21 00:01:52 first commit