Closed lamarpavel closed 7 years ago
Since the update to neovim v0.2, using ag for file listing in neovim-fuzzy produces a Vim(call):E5060: unknown flag 'w'.
Vim(call):E5060: unknown flag 'w'
See: https://github.com/neovim/neovim/pull/6427/files#diff-deb695d507653839019814f54242d47bR17430
The culprit lies here: https://github.com/cloudhead/neovim-fuzzy/blob/master/plugin/neovim-fuzzy.vim#L73
Changing this line to call writefile(a:ignorelist, ignorefile, 's') fixes the issue.
call writefile(a:ignorelist, ignorefile, 's')
Fixed in master (5f7afa98b8f109c0c62dcfc824f0debf1e5d7212), please confirm it works.
Just tested with NVIM v0.2.0 and can confirm it works. Thanks.
NVIM v0.2.0
Since the update to neovim v0.2, using ag for file listing in neovim-fuzzy produces a
Vim(call):E5060: unknown flag 'w'
.See: https://github.com/neovim/neovim/pull/6427/files#diff-deb695d507653839019814f54242d47bR17430
The culprit lies here: https://github.com/cloudhead/neovim-fuzzy/blob/master/plugin/neovim-fuzzy.vim#L73
Changing this line to
call writefile(a:ignorelist, ignorefile, 's')
fixes the issue.