From d531ef6813919dd6df8ca6927cd99ec3c0a65635 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Tue, 26 Apr 2022 15:31:29 +0800 Subject: vim-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 \ but producing a different code. https://github.com/vim/vim/commit/fccd93f0917234b962ce07d1df3adf9d7105936f Use this notation in langmap_spec. --- src/nvim/keymap.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/nvim/keymap.h') diff --git a/src/nvim/keymap.h b/src/nvim/keymap.h index 5259bf3d52..9febd472f9 100644 --- a/src/nvim/keymap.h +++ b/src/nvim/keymap.h @@ -521,7 +521,6 @@ enum { FSK_KEEP_X_KEY = 0x02, ///< don’t translate xHome to Home key FSK_IN_STRING = 0x04, ///< in string, double quote is escaped FSK_SIMPLIFY = 0x08, ///< simplify , etc. - FSK_CURLY = 0x10, ///< {C-x} instead of }; #ifdef INCLUDE_GENERATED_DECLARATIONS -- cgit