mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 23:38:17 +00:00
vim-patch:8.0.0560: :windo allows for ! but it's not supported (#8500)
Problem: :windo allows for ! but it's not supported.
Solution: Disallow passing !. (Hirohito Higashi)
451a4a1cb7
This commit is contained in:

committed by
Justin M. Keyes

parent
451c48a092
commit
bd736a98e3
@@ -3082,7 +3082,7 @@ return {
|
||||
},
|
||||
{
|
||||
command='windo',
|
||||
flags=bit.bor(BANG, NEEDARG, EXTRA, NOTRLCOM, RANGE, NOTADR, DFLALL),
|
||||
flags=bit.bor(NEEDARG, EXTRA, NOTRLCOM, RANGE, NOTADR, DFLALL),
|
||||
addr_type=ADDR_WINDOWS,
|
||||
func='ex_listdo',
|
||||
},
|
||||
|
Reference in New Issue
Block a user