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/option.c | |
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/option.c')
-rw-r--r-- | src/option.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c index 6f9610dd0..cc68cdfd5 100644 --- a/src/option.c +++ b/src/option.c @@ -3040,6 +3040,8 @@ static struct vimoption options[] = p_term("t_ZR", T_CZR) p_term("t_8f", T_8F) p_term("t_8b", T_8B) + p_term("t_BE", T_BE) + p_term("t_BD", T_BD) /* terminal key codes are not in here */ |