summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index 819cf732c8..aee2e6f72e 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -1846,6 +1846,14 @@ EXCMD(CMD_X, "X", ex_X,
EX_TRLBAR,
ADDR_NONE),
+// Commands that are recognized only in find_ex_command().
+EXCMD(CMD_increment, "++", ex_incdec,
+ EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK,
+ ADDR_NONE),
+EXCMD(CMD_decrement, "--", ex_incdec,
+ EX_EXTRA|EX_NOTRLCOM|EX_SBOXOK|EX_CMDWIN|EX_LOCK_OK,
+ ADDR_NONE),
+
#undef EXCMD
#ifndef DO_DECLARE_EXCMD