summaryrefslogtreecommitdiffstats
path: root/linenoise
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-13 09:09:28 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-13 09:09:28 -0700
commit25be867d0902db863686414f89e75ee0fedc1d22 (patch)
treed0e527f029038667ec1495622fa4e76e05985951 /linenoise
parente8bfdef6d901431c1d69ef4d70a26451dca6e084 (diff)
downloadtxr-25be867d0902db863686414f89e75ee0fedc1d22.tar.gz
txr-25be867d0902db863686414f89e75ee0fedc1d22.tar.bz2
txr-25be867d0902db863686414f89e75ee0fedc1d22.zip
linenoise: recognize additional commands in search.
* linenoise/linenoise.c (history_search): Editing keys should leave search mode and be processed in command mode. Also, let's have Ctrl-L and Ctrl-Z work, but stay in search mode. * txr.1: Documented.
Diffstat (limited to 'linenoise')
-rw-r--r--linenoise/linenoise.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/linenoise/linenoise.c b/linenoise/linenoise.c
index 44f88211..80c2a961 100644
--- a/linenoise/linenoise.c
+++ b/linenoise/linenoise.c
@@ -506,7 +506,10 @@ static int history_search(lino_t *l)
c = 0;
break;
case CTL('F'): case CTL('B'):
+ case CTL('A'): case CTL('E'):
case CTL('N'): case CTL('P'):
+ case CTL('D'): case CTL('U'): case CTL('W'): case CTL('K'):
+ case CTL('T'):
case ESC:
if (hi < l->history_len)
l->history_index = l->history_len - hi - 1;
@@ -516,6 +519,13 @@ static int history_search(lino_t *l)
case CTL('V'):
vb = 1;
continue;
+ case CTL('L'):
+ lino_clear_screen(l);
+ break;
+ case CTL('Z'):
+ disable_raw_mode(l);
+ raise(SIGTSTP);
+ enable_raw_mode(l);
}
}
break;