aboutsummaryrefslogtreecommitdiff
path: root/linenoise.h
AgeCommit message (Collapse)AuthorFilesLines
2018-03-25linenoise: Update to support multiline mode.Steve Bennett1-0/+11
Updated to: https://github.com/msteveb/linenoise/commit/ad5172e99520e2fe2a35b4bbd7fbc74d9df36df1 Now supports multiline mode (by setting $history::multiline to 1) Improved windows support Signed-off-by: Steve Bennett <steveb@workware.net.au>
2016-09-05Update linenoise to the latest versionSteve Bennett1-6/+67
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2013-07-24Update linenoise.c to match recent githubSteve Bennett1-0/+2
From git://github.com/msteveb/linenoise.git Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-09-14Restructure linenoise in prep. for win32 supportSteve Bennett1-0/+1
Separate out the termios-specific code Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-09-14Minor linenoise improvementsSteve Bennett1-2/+2
From github: - CHA is 1-based - Added some casts to make it easier to include in a c++ - const correctness - chars are unsigned if not utf-8
2011-09-12Remove all trailing whitespace in sourceSteve Bennett1-3/+3
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-06-09Use autosetup instead of autoconfSteve Bennett1-0/+3
Faster, simpler auto-configuration Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-04-08Update linenoise to the latest versionSteve Bennett1-20/+34
From https://github.com/msteveb/linenoise with minor changes. - Optimise common insert/remove char cases - Add completion framework (unused in Jim Tcl) Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-11-17Add command line editing with linenoiseSteve Bennett1-0/+44
Enabled by default, but can be disabled with --disable-lineedit Signed-off-by: Steve Bennett <steveb@workware.net.au>