0
0
mirror of https://github.com/vim/vim.git synced 2025-09-30 04:44:14 -04:00

patch 8.1.1865: spellrare and spellrepall in the wrong order

Problem:    Spellrare and spellrepall in the wrong order.
Solution:   Put spellrare below spellrepall. (closes #4820)
This commit is contained in:
Bram Moolenaar
2019-08-16 22:42:13 +02:00
parent 413c04e8d5
commit a3891681f7
3 changed files with 6 additions and 4 deletions

View File

@@ -121,7 +121,7 @@ zuG Undo |zW| and |zG|, remove the word from the internal
:spellw[rong]! {word} Add {word} as a wrong (bad) word to the internal word :spellw[rong]! {word} Add {word} as a wrong (bad) word to the internal word
list, like with |zW|. list, like with |zW|.
*:spellr* *:spellrare* *:spellra* *:spellrare*
:[count]spellr[are] {word} :[count]spellr[are] {word}
Add {word} as a rare word to 'spellfile', similar to Add {word} as a rare word to 'spellfile', similar to
|zw|. Without count the first name is used, with |zw|. Without count the first name is used, with

View File

@@ -1378,9 +1378,6 @@ EXCMD(CMD_split, "split", ex_splitview,
EXCMD(CMD_spellgood, "spellgood", ex_spell, EXCMD(CMD_spellgood, "spellgood", ex_spell,
EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR, EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR,
ADDR_OTHER), 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, EXCMD(CMD_spelldump, "spelldump", ex_spelldump,
EX_BANG|EX_TRLBAR, EX_BANG|EX_TRLBAR,
ADDR_NONE), ADDR_NONE),
@@ -1390,6 +1387,9 @@ EXCMD(CMD_spellinfo, "spellinfo", ex_spellinfo,
EXCMD(CMD_spellrepall, "spellrepall", ex_spellrepall, EXCMD(CMD_spellrepall, "spellrepall", ex_spellrepall,
EX_TRLBAR, EX_TRLBAR,
ADDR_NONE), 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, EXCMD(CMD_spellundo, "spellundo", ex_spell,
EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR, EX_BANG|EX_RANGE|EX_NEEDARG|EX_EXTRA|EX_TRLBAR,
ADDR_OTHER), ADDR_OTHER),

View File

@@ -769,6 +769,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1865,
/**/ /**/
1864, 1864,
/**/ /**/