diff options
Diffstat (limited to 'src/nvim/ex_cmds_defs.h')
-rw-r--r-- | src/nvim/ex_cmds_defs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds_defs.h b/src/nvim/ex_cmds_defs.h index 55476cd90d..1edc1bb8c6 100644 --- a/src/nvim/ex_cmds_defs.h +++ b/src/nvim/ex_cmds_defs.h @@ -70,6 +70,11 @@ typedef struct exarg exarg_T; #endif +/* behavior for bad character, "++bad=" argument */ +#define BAD_REPLACE '?' /* replace it with '?' (default) */ +#define BAD_KEEP -1 /* leave it */ +#define BAD_DROP -2 /* erase it */ + /* * This array maps ex command names to command codes. * The order in which command names are listed below is significant -- |