diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-16 22:42:13 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-16 22:42:13 +0200 |
commit | a3891681f72fd9efdea6444620d787358850d823 (patch) | |
tree | b38a488d9f32a0e51d9b5fa4f4fb24697e1020f9 /src/ex_cmds.h | |
parent | 413c04e8d515f604a17b90295c86a0fd547518ba (diff) | |
download | vim-git-a3891681f72fd9efdea6444620d787358850d823.tar.gz |
patch 8.1.1865: spellrare and spellrepall in the wrong orderv8.1.1865
Problem: Spellrare and spellrepall in the wrong order.
Solution: Put spellrare below spellrepall. (closes #4820)
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r-- | src/ex_cmds.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index c124a1ee6..2490b5424 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -1378,9 +1378,6 @@ 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), @@ -1390,6 +1387,9 @@ EXCMD(CMD_spellinfo, "spellinfo", ex_spellinfo, EXCMD(CMD_spellrepall, "spellrepall", ex_spellrepall, EX_TRLBAR, ADDR_NONE), +EXCMD(CMD_spellrare, "spellrare", ex_spell, + EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR, + ADDR_OTHER), EXCMD(CMD_spellundo, "spellundo", ex_spell, EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR, ADDR_OTHER), |