Closed silvioricardoc closed 4 years ago
The following line in localvimrc.vim generates a syntax error:
catch ^Vim\%((\a\+)\)\=:E48
The correct syntax should include delimiters:
catch /^Vim\%((\a\+)\)\=:E48/
(This is seen in Neovim v0.4.3. Maybe vim itself is a bit more lax on the syntax?)
This bug has been fixed quite some time ago. Latest releases on github and www.vim.org already contain this change.
The following line in localvimrc.vim generates a syntax error:
The correct syntax should include delimiters:
(This is seen in Neovim v0.4.3. Maybe vim itself is a bit more lax on the syntax?)