mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.0.0210: no support for bracketed paste
Problem: Vim does not support bracketed paste, as implemented by xterm and other terminals. Solution: Add t_BE, t_BD, t_PS and t_PE.
This commit is contained in:
@@ -2108,6 +2108,14 @@ typedef enum
|
||||
ASSERT_OTHER
|
||||
} assert_type_T;
|
||||
|
||||
/* Mode for bracketed_paste(). */
|
||||
typedef enum {
|
||||
PASTE_INSERT, /* insert mode */
|
||||
PASTE_CMDLINE, /* command line */
|
||||
PASTE_EX, /* ex mode line */
|
||||
PASTE_ONE_CHAR /* return first character */
|
||||
} paste_mode_T;
|
||||
|
||||
#include "ex_cmds.h" /* Ex command defines */
|
||||
#include "spell.h" /* spell checking stuff */
|
||||
|
||||
|
Reference in New Issue
Block a user