]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Patch from Matsui Nag to implement xterm's "bracketed paste mode", in
authorSimon Tatham <anakin@pobox.com>
Sun, 19 Feb 2012 10:27:18 +0000 (10:27 +0000)
committerSimon Tatham <anakin@pobox.com>
Sun, 19 Feb 2012 10:27:18 +0000 (10:27 +0000)
which text pasted into the terminal is preceded and followed by
special function-key-like escape sequences ESC[200~ and ESC[201~ so
that the application can identify it and treat it specially (e.g.
disabling auto-indent-same-as-previous-line in text editors). Enabled
and disabled by ESC[?2004h and ESC[?2004l, and of course off by
default.

[originally from svn r9412]

terminal.c
terminal.h

index d23cbe91a9786f40e7b2d32fcbcda3b2269aa865..e3f61e9332166daac0382f6c2115c7b604215312 100644 (file)
@@ -1225,6 +1225,7 @@ static void power_on(Terminal *term, int clear)
     term_print_finish(term);
     term->xterm_mouse = 0;
     set_raw_mouse_mode(term->frontend, FALSE);
+    term->bracketed_paste = FALSE;
     {
        int i;
        for (i = 0; i < 256; i++)
@@ -2503,6 +2504,9 @@ static void toggle_mode(Terminal *term, int mode, int query, int state)
                save_cursor(term, state);
            term->disptop = 0;
            break;
+         case 2004:                   /* xterm bracketed paste */
+           term->bracketed_paste = state ? TRUE : FALSE;
+           break;
     } else
        switch (mode) {
          case 4:                      /* IRM: set insert mode */
@@ -5696,7 +5700,12 @@ void term_do_paste(Terminal *term)
         if (term->paste_buffer)
             sfree(term->paste_buffer);
         term->paste_pos = term->paste_hold = term->paste_len = 0;
-        term->paste_buffer = snewn(len, wchar_t);
+        term->paste_buffer = snewn(len + 12, wchar_t);
+
+        if (term->bracketed_paste) {
+            memcpy(term->paste_buffer, L"\033[200~", 6 * sizeof(wchar_t));
+            term->paste_len += 6;
+        }
 
         p = q = data;
         while (p < data + len) {
@@ -5720,6 +5729,12 @@ void term_do_paste(Terminal *term)
             q = p;
         }
 
+        if (term->bracketed_paste) {
+            memcpy(term->paste_buffer + term->paste_len,
+                   L"\033[201~", 6 * sizeof(wchar_t));
+            term->paste_len += 6;
+        }
+
         /* Assume a small paste will be OK in one go. */
         if (term->paste_len < 256) {
             if (term->ldisc)
index 42a67ed636b73f192352e015395be5363d85ebb9..5c9658b8ce93b8d50be7474cd7c3cecaf2dc377f 100644 (file)
@@ -154,6 +154,8 @@ struct terminal_tag {
     int xterm_mouse;                  /* send mouse messages to host */
     int mouse_is_down;                /* used while tracking mouse buttons */
 
+    int bracketed_paste;
+
     int cset_attr[2];
 
 /*