comparison src/keymap.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 4aead6a9b7a9
children 2025bec9175f
comparison
equal deleted inserted replaced
10639:9b3141c5aa1b 10640:27be410d6d29
389 #define K_KMINUS TERMCAP2KEY('K', '7') /* keypad minus */ 389 #define K_KMINUS TERMCAP2KEY('K', '7') /* keypad minus */
390 #define K_KDIVIDE TERMCAP2KEY('K', '8') /* keypad / */ 390 #define K_KDIVIDE TERMCAP2KEY('K', '8') /* keypad / */
391 #define K_KMULTIPLY TERMCAP2KEY('K', '9') /* keypad * */ 391 #define K_KMULTIPLY TERMCAP2KEY('K', '9') /* keypad * */
392 #define K_KENTER TERMCAP2KEY('K', 'A') /* keypad Enter */ 392 #define K_KENTER TERMCAP2KEY('K', 'A') /* keypad Enter */
393 #define K_KPOINT TERMCAP2KEY('K', 'B') /* keypad . or ,*/ 393 #define K_KPOINT TERMCAP2KEY('K', 'B') /* keypad . or ,*/
394 #define K_PS TERMCAP2KEY('P', 'S') /* paste start */
395 #define K_PE TERMCAP2KEY('P', 'E') /* paste end */
394 396
395 #define K_K0 TERMCAP2KEY('K', 'C') /* keypad 0 */ 397 #define K_K0 TERMCAP2KEY('K', 'C') /* keypad 0 */
396 #define K_K1 TERMCAP2KEY('K', 'D') /* keypad 1 */ 398 #define K_K1 TERMCAP2KEY('K', 'D') /* keypad 1 */
397 #define K_K2 TERMCAP2KEY('K', 'E') /* keypad 2 */ 399 #define K_K2 TERMCAP2KEY('K', 'E') /* keypad 2 */
398 #define K_K3 TERMCAP2KEY('K', 'F') /* keypad 3 */ 400 #define K_K3 TERMCAP2KEY('K', 'F') /* keypad 3 */