diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-21 20:04:22 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-21 20:04:22 +0100 |
commit | ec2da36ca48b40c0654b32a8d2c9f52e796daa5e (patch) | |
tree | f6dab5f51ef8f54af0f45fa5b79129638f3c2737 /src/proto/edit.pro | |
parent | 41baa7983aa81b0343b053e6a672cf8224a10245 (diff) | |
download | vim-git-ec2da36ca48b40c0654b32a8d2c9f52e796daa5e.tar.gz |
patch 8.0.0210: no support for bracketed pastev8.0.0210
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.
Diffstat (limited to 'src/proto/edit.pro')
-rw-r--r-- | src/proto/edit.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/edit.pro b/src/proto/edit.pro index 7a399c0e6..f6d645ccf 100644 --- a/src/proto/edit.pro +++ b/src/proto/edit.pro @@ -38,6 +38,7 @@ void fixthisline(int (*get_the_indent)(void)); void fix_indent(void); int in_cinkeys(int keytyped, int when, int line_is_empty); int hkmap(int c); +int bracketed_paste(paste_mode_T mode, int drop, garray_T *gap); void ins_scroll(void); void ins_horscroll(void); int ins_copychar(linenr_T lnum); |