comparison src/vim.h @ 10640:27be410d6d29 v8.0.0210

patch 8.0.0210: no support for bracketed paste commit https://github.com/vim/vim/commit/ec2da36ca48b40c0654b32a8d2c9f52e796daa5e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 21 20:04:22 2017 +0100 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.
author Christian Brabandt <cb@256bit.org>
date Sat, 21 Jan 2017 20:15:04 +0100
parents b726d3ea70bc
children 24a1fbd78b76
comparison
equal deleted inserted replaced
10639:9b3141c5aa1b 10640:27be410d6d29
2106 ASSERT_MATCH, 2106 ASSERT_MATCH,
2107 ASSERT_NOTMATCH, 2107 ASSERT_NOTMATCH,
2108 ASSERT_OTHER 2108 ASSERT_OTHER
2109 } assert_type_T; 2109 } assert_type_T;
2110 2110
2111 /* Mode for bracketed_paste(). */
2112 typedef enum {
2113 PASTE_INSERT, /* insert mode */
2114 PASTE_CMDLINE, /* command line */
2115 PASTE_EX, /* ex mode line */
2116 PASTE_ONE_CHAR /* return first character */
2117 } paste_mode_T;
2118
2111 #include "ex_cmds.h" /* Ex command defines */ 2119 #include "ex_cmds.h" /* Ex command defines */
2112 #include "spell.h" /* spell checking stuff */ 2120 #include "spell.h" /* spell checking stuff */
2113 2121
2114 #include "proto.h" /* function prototypes */ 2122 #include "proto.h" /* function prototypes */
2115 2123