comparison src/misc2.c @ 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 055b1633aed7
children 2025bec9175f
comparison
equal deleted inserted replaced
10639:9b3141c5aa1b 10640:27be410d6d29
2292 {K_RIGHT, (char_u *)"Right"}, 2292 {K_RIGHT, (char_u *)"Right"},
2293 {K_XUP, (char_u *)"xUp"}, 2293 {K_XUP, (char_u *)"xUp"},
2294 {K_XDOWN, (char_u *)"xDown"}, 2294 {K_XDOWN, (char_u *)"xDown"},
2295 {K_XLEFT, (char_u *)"xLeft"}, 2295 {K_XLEFT, (char_u *)"xLeft"},
2296 {K_XRIGHT, (char_u *)"xRight"}, 2296 {K_XRIGHT, (char_u *)"xRight"},
2297 {K_PS, (char_u *)"PasteStart"},
2298 {K_PE, (char_u *)"PasteEnd"},
2297 2299
2298 {K_F1, (char_u *)"F1"}, 2300 {K_F1, (char_u *)"F1"},
2299 {K_F2, (char_u *)"F2"}, 2301 {K_F2, (char_u *)"F2"},
2300 {K_F3, (char_u *)"F3"}, 2302 {K_F3, (char_u *)"F3"},
2301 {K_F4, (char_u *)"F4"}, 2303 {K_F4, (char_u *)"F4"},