summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-11 22:51:14 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-11 22:51:14 +0200
commit08cc374dabd2a02785129fa1c0100f7745c244ad (patch)
tree1f24dad29bd8ed0d6715bf96388817f8b162f7c6 /src/ex_cmds.h
parent4999a7fb6585915b53888c930067b33c01674678 (diff)
patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrarev8.1.1838
Problem: There is :spellwrong and :spellgood but not :spellrare. Solution: Add :spellrare. (Martin Tournoij, closes #4291)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index 196cdcfef8..c124a1ee67 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -1378,6 +1378,9 @@ EXCMD(CMD_split, "split", ex_splitview,
EXCMD(CMD_spellgood, "spellgood", ex_spell,
EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR,
ADDR_OTHER),
+EXCMD(CMD_spellrare, "spellrare", ex_spell,
+ EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR,
+ ADDR_OTHER),
EXCMD(CMD_spelldump, "spelldump", ex_spelldump,
EX_BANG|EX_TRLBAR,
ADDR_NONE),