diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-11 22:51:14 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-11 22:51:14 +0200 |
commit | 08cc374dabd2a02785129fa1c0100f7745c244ad (patch) | |
tree | 1f24dad29bd8ed0d6715bf96388817f8b162f7c6 /src/ex_cmds.h | |
parent | 4999a7fb6585915b53888c930067b33c01674678 (diff) | |
download | vim-git-08cc374dabd2a02785129fa1c0100f7745c244ad.tar.gz |
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.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 196cdcfef..c124a1ee6 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), |