-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors in parsing #18
Comments
This is a vimlparser problem. It fails to parse |
I fixed it by #21 (it's somewhat workaround though...) |
Thanks, @haya14busa, it does seem to cause or detect newer issues. syn match pythonError "[&|]\{2,}" display
syntax match qfFileName /^\zs\S[^|]\+\/\ze[^|\/]\+\/[^|\/]\+|/ conceal cchar=+
are a couple of examples. I am doing quick tests (thanks to go-vimlparser 's speed) like so vimlparser .vim/**/*.vim 2>&1 | grep -E ':\d+:\d+: vimlparser:' | vim - |
Thanks! hmm... it seems to fail to handle |
I fixed it. #22 Can you please update and try again? I also runs vimlparser commands for all vim script under .vim and it worked. |
Thanks for the quick turnaround! Seems most of the problems are gone and only From HybridText: syn region txtBlock start=+^ *|+ end=+$+
.vim/neobundles/HybridText/syntax/hybrid.vim:213:34: vimlparser: E580: :endif without :if From jedi-vim: syn region rstPythonRegion start=/^\v {4}/ end=/\v^( {4}|\n)@!/ contains=@rstPythonScript
.vim/neobundles/jedi-vim/autoload/jedi.vim:312:62: vimlparser: E10: \\ should be followed by /, ? or & From vim-go a very interesting expression: % | " Couldn't detect gofmt error format, output errors
.vim/neobundles/vim-go/autoload/go/fmt.vim:185:9: vimlparser: E492: Not an editor command: | " Couldn't detect gofmt error format, output errors However that runs fine in vim, just cat'ing the current source file. There is a different issue with embedded python code but that probably should be dealt with in a separate bug. |
Thanks for making viml parsing super fast! I have a bug: For the following code from vim-go, the following issue with parsing is seen:
The text was updated successfully, but these errors were encountered: