about summary refs log tree commit diff homepage
path: root/client.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xclient.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/client.c b/client.c
index 2c95468..8761f04 100755
--- a/client.c
+++ b/client.c
@@ -74,6 +74,7 @@ static enum {
     MODE_NORMAL,
     MODE_INSERT,
     MODE_REPLACE,
+    MODE_PUT,
     MODE_DRAW,
 } mode;
 static struct {
@@ -148,6 +149,12 @@ static void readInput(void) {
         return;
     }
 
+    if (mode == MODE_PUT) {
+        if (isprint(c)) clientPut(inputColor, c);
+        mode = MODE_NORMAL;
+        return;
+    }
+
     if (mode == MODE_DRAW && !drawChar) {
         if (c == ESC) mode = MODE_NORMAL;
         if (isprint(c)) {
@@ -166,6 +173,7 @@ static void readInput(void) {
         case 'i': insertMode(1, 0); break;
         case 'I': insertMode(0, 0); break;
         case 'r': mode = MODE_REPLACE; break;
+        case 'p': mode = MODE_PUT; break;
         case 'R': mode = MODE_DRAW; drawChar = 0; break;
         case 'x': clientPut(CH_COLOR(inch()), ' '); break;
 
12Install gnupg2 from pkgsrc and symlink gpgJune McEnroe 2019-01-12Reference cash builtin man pages in cash.1 SEE ALSOJune McEnroe 2019-01-12Restore cash builtin man page datesJune McEnroe 2019-01-12Use local libeditJune McEnroe 2019-01-12Replace libedit MakefileJune McEnroe 2019-01-11Import /usr/src/lib/libedit from NetBSD 8.0June McEnroe 2019-01-11Add PSlit for prompt escapesJune McEnroe 2019-01-11Don't make depend automaticallyJune McEnroe