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:
Jan Edmund Lazo
2018-06-08 02:06:32 -04:00
committed by Justin M. Keyes
parent 451c48a092
commit bd736a98e3

View File

@@ -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',
},