comparison src/vim.h @ 20627:8bce783af0cb v8.2.0867

patch 8.2.0867: using {xxx} for encoding a modifier is not nice Commit: https://github.com/vim/vim/commit/fccd93f0917234b962ce07d1df3adf9d7105936f Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 31 22:06:51 2020 +0200 patch 8.2.0867: using \{xxx} for encoding a modifier is not nice Problem: Using \{xxx} for encoding a modifier is not nice. Solution: Use \<*xxx> instead, since it's the same as \<xxx> but producing a different code.
author Bram Moolenaar <Bram@vim.org>
date Sun, 31 May 2020 22:15:03 +0200
parents c2570baa2e4c
children 6ff992bf4c82
comparison
equal deleted inserted replaced
20626:38f728a93c07 20627:8bce783af0cb
2664 // Flags for find_special_key() 2664 // Flags for find_special_key()
2665 #define FSK_KEYCODE 0x01 // prefer key code, e.g. K_DEL instead of DEL 2665 #define FSK_KEYCODE 0x01 // prefer key code, e.g. K_DEL instead of DEL
2666 #define FSK_KEEP_X_KEY 0x02 // don't translate xHome to Home key 2666 #define FSK_KEEP_X_KEY 0x02 // don't translate xHome to Home key
2667 #define FSK_IN_STRING 0x04 // TRUE in string, double quote is escaped 2667 #define FSK_IN_STRING 0x04 // TRUE in string, double quote is escaped
2668 #define FSK_SIMPLIFY 0x08 // simplify <C-H> and <A-x> 2668 #define FSK_SIMPLIFY 0x08 // simplify <C-H> and <A-x>
2669 #define FSK_CURLY 0x10 // {C-x} instead of <C-x>
2670 2669
2671 #endif // VIM__H 2670 #endif // VIM__H