mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 10:18:18 +00:00
vim-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 vim/vim#4820)
a3891681f7
This commit is contained in:
@@ -110,7 +110,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
|
||||||
|
@@ -2549,12 +2549,6 @@ module.cmds = {
|
|||||||
addr_type='ADDR_OTHER',
|
addr_type='ADDR_OTHER',
|
||||||
func='ex_spell',
|
func='ex_spell',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
command='spellrare',
|
|
||||||
flags=bit.bor(BANG, RANGE, NEEDARG, EXTRA, TRLBAR),
|
|
||||||
addr_type='ADDR_OTHER',
|
|
||||||
func='ex_spell',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
command='spelldump',
|
command='spelldump',
|
||||||
flags=bit.bor(BANG, TRLBAR),
|
flags=bit.bor(BANG, TRLBAR),
|
||||||
@@ -2573,6 +2567,12 @@ module.cmds = {
|
|||||||
addr_type='ADDR_NONE',
|
addr_type='ADDR_NONE',
|
||||||
func='ex_spellrepall',
|
func='ex_spellrepall',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
command='spellrare',
|
||||||
|
flags=bit.bor(BANG, RANGE, NEEDARG, EXTRA, TRLBAR),
|
||||||
|
addr_type='ADDR_OTHER',
|
||||||
|
func='ex_spell',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
command='spellundo',
|
command='spellundo',
|
||||||
flags=bit.bor(BANG, RANGE, NEEDARG, EXTRA, TRLBAR),
|
flags=bit.bor(BANG, RANGE, NEEDARG, EXTRA, TRLBAR),
|
||||||
|
Reference in New Issue
Block a user