diff options
Diffstat (limited to 'src/nvim/mapping.h')
-rw-r--r-- | src/nvim/mapping.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/mapping.h b/src/nvim/mapping.h index b19131a686..98d0074075 100644 --- a/src/nvim/mapping.h +++ b/src/nvim/mapping.h @@ -21,6 +21,7 @@ struct map_arguments { bool script; bool silent; bool unique; + bool replace_keycodes; /// The {lhs} of the mapping. /// @@ -44,7 +45,7 @@ struct map_arguments { char *desc; /// map description }; typedef struct map_arguments MapArguments; -#define MAP_ARGUMENTS_INIT { false, false, false, false, false, false, false, \ +#define MAP_ARGUMENTS_INIT { false, false, false, false, false, false, false, false, \ { 0 }, 0, { 0 }, 0, NULL, 0, LUA_NOREF, false, NULL, 0, NULL } #ifdef INCLUDE_GENERATED_DECLARATIONS |