>From 59221632d391ae31ae02916c8c7c1773ab814850 Mon Sep 17 00:00:00 2001 From: Brand Huntsman
Date: Fri, 3 Jan 2020 16:52:21 -0700 Subject: [PATCH] bracketed paste Signed-off-by: Brand Huntsman --- src/global.c | 20 ++++++++++++++++++++ src/nano.c | 21 +++++++++++++++++++++ src/nano.h | 2 ++ src/prompt.c | 2 ++ src/proto.h | 2 ++ src/winio.c | 12 ++++++++++++ 6 files changed, 59 insertions(+) diff --git a/src/global.c b/src/global.c index 067d202d..cb61a17b 100644 --- a/src/global.c +++ b/src/global.c @@ -38,6 +38,8 @@ bool meta_key; /* Whether the current keystroke is a Meta key. */ bool shift_held; /* Whether Shift was being held together with a movement key. */ +bool bracketed_paste = FALSE; + /* Whether keys are input via bracketed paste. */ bool focusing = TRUE; /* Whether an update of the edit window should center the cursor. */ @@ -336,6 +338,11 @@ void do_cancel(void) { } +/* Catch and ignore bracketed paste marker keys. */ +void do_nothing(void) +{ +} + /* Add a function to the linked list of functions. */ void add_to_funcs(void (*func)(void), int menus, const char *desc, const char *help, bool blank_after, bool viewok) @@ -447,6 +454,16 @@ const keystruct *get_shortcut(int *kbinput) (*kbinput >= 0xA0 && *kbinput <= 0xFF))) return NULL; + if (bracketed_paste && *kbinput != BRACKETED_PASTE_MARKER) { + /* Beep and ignore all non-printable characters in prompts. */ + if (currmenu != MMAIN) + return NULL; + + /* Beep and ignore most non-printable characters in buffer. */ + if (*kbinput != 0x9 && *kbinput != 0xA && *kbinput != 0xD) + return NULL; + } + for (keystruct *s = sclist; s != NULL; s = s->next) { if ((s->menus & currmenu) && *kbinput == s->keycode && meta_key == s->meta) @@ -1396,6 +1413,9 @@ void shortcut_init(void) #ifdef ENABLE_SPELLER add_to_sclist(MMAIN, "F12", 0, do_spell, 0); #endif + + /* Catch and ignore bracketed paste marker keys. */ + add_to_sclist(MMOST|MHELP|MBROWSER|MYESNO, "", BRACKETED_PASTE_MARKER, do_nothing, 0); } #ifndef NANO_TINY diff --git a/src/nano.c b/src/nano.c index 34eafe29..0156d1c6 100644 --- a/src/nano.c +++ b/src/nano.c @@ -482,6 +482,13 @@ void say_there_is_no_help(void) } #endif +/* Disable bracketed paste. */ +void disable_bracketed_paste(void) +{ + printf("\e[?2004l"); + fflush(stdout); +} + /* Exit normally: restore the terminal state and save history files. */ void finish(void) { @@ -501,6 +508,8 @@ void finish(void) curs_set(1); endwin(); + disable_bracketed_paste(); + /* Restore the old terminal settings. */ tcsetattr(0, TCSANOW, &original_state); @@ -532,6 +541,8 @@ void die(const char *msg, ...) curs_set(1); endwin(); + disable_bracketed_paste(); + /* Restore the old terminal settings. */ tcsetattr(0, TCSANOW, &original_state); @@ -1097,6 +1108,8 @@ bool scoop_stdin(void) endwin(); tcsetattr(0, TCSANOW, &original_state); + disable_bracketed_paste(); + /* When input comes from a terminal, show a helpful message. */ if (isatty(STANDARD_INPUT)) fprintf(stderr, _("Reading data from keyboard; " @@ -1216,6 +1229,8 @@ RETSIGTYPE do_suspend(int signal) curs_set(1); endwin(); + disable_bracketed_paste(); + /* Display our helpful message. */ printf(_("Use \"fg\" to return to nano.\n")); fflush(stdout); @@ -1323,6 +1338,8 @@ void regenerate_screen(void) endwin(); doupdate(); + disable_bracketed_paste(); + /* Put the terminal in the desired state again, recreate the subwindows * with their (new) sizes, and redraw the contents of these windows. */ terminal_init(); @@ -1481,6 +1498,10 @@ void terminal_init(void) } else tcsetattr(0, TCSANOW, &desired_state); #endif + + /* Enable bracketed paste. */ + printf("\e[?2004h"); + fflush(stdout); } /* Ask ncurses for a keycode, or assign a default one. */ diff --git a/src/nano.h b/src/nano.h index ba05501c..78ba89da 100644 --- a/src/nano.h +++ b/src/nano.h @@ -607,6 +607,8 @@ enum #define SHIFT_DELETE 0x45D #define SHIFT_TAB 0x45F +#define BRACKETED_PASTE_MARKER 0x470 + /* A special keycode for when