diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-17 07:15:44 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-17 07:15:44 -0700 |
commit | 91935fc0c9a1ccf23cee42b614baf0b49bc868ec (patch) | |
tree | 4f14432d8a21533c448db4e28a7d22ad0357aa5b /linenoise/linenoise.c | |
parent | ee117e6c9c10be90ba6be970e77b77a5ddb24864 (diff) | |
download | txr-91935fc0c9a1ccf23cee42b614baf0b49bc868ec.tar.gz txr-91935fc0c9a1ccf23cee42b614baf0b49bc868ec.tar.bz2 txr-91935fc0c9a1ccf23cee42b614baf0b49bc868ec.zip |
linenoise: Ctrl-X Ctrl-V super verbatim mode.
* linenoise/linenoise.c (edit): Support a verbatim
entry mode with limited commands, in which most
characters self-insert, including Enter.
* txr.1: Documented.
Diffstat (limited to 'linenoise/linenoise.c')
-rw-r--r-- | linenoise/linenoise.c | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/linenoise/linenoise.c b/linenoise/linenoise.c index cc291d38..ff931121 100644 --- a/linenoise/linenoise.c +++ b/linenoise/linenoise.c @@ -1072,7 +1072,7 @@ static void edit_in_editor(lino_t *l) { * The function returns the length of the current buffer. */ static int edit(lino_t *l, const char *prompt) { - int verbatim = 0, extended = 0; + int verbatim = 0, extended = 0, paste = 0; /* Populate the linenoise state that we pass to functions implementing * specific editing functionalities. */ @@ -1113,7 +1113,14 @@ static int edit(lino_t *l, const char *prompt) c = byte; - if (verbatim) { + if (paste && (c == CTL('X'))) { + paste = 0; + continue; + } + + if (verbatim || + (paste && c != ESC && c != BACKSPACE && c != CTL('H'))) + { if (edit_insert(l,c)) { l->error = lino_ioerr; return -1; @@ -1129,6 +1136,9 @@ static int edit(lino_t *l, const char *prompt) case CTL('E'): edit_in_editor(l); break; + case CTL('V'): + paste = 1; + break; default: generate_beep(l); break; @@ -1157,6 +1167,13 @@ static int edit(lino_t *l, const char *prompt) switch(c) { case ENTER: + if (paste) { + if (edit_insert(l,c)) { + l->error = lino_ioerr; + return -1; + } + break; + } if (l->history_len > 0) { l->history_len--; free(l->history[l->history_len]); |