We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
vim-vimlparse cannot parse the script, but Vim can run it well:
let s:inline_python = 'python << EOF' exec s:inline_python import os EOF
And it raises the following error:
vimlparser: E492: Not an editor command: import os: line 3 col 1
The text was updated successfully, but these errors were encountered:
exec s:inline_python
This is impossible to parse.
function! s:foo() let let s:inline_python = 'echo "I love python"' endfunction let s:inline_python = 'python << EOF' call s:foo() exec s:inline_python import os EOF
In this case, import os should be parsed as VimL not python.
import os
Sorry, something went wrong.
But the following could be supported:
let cmd_exec = 'python3' execute 'command! -nargs=1 PythonJedi '.cmd_exec.' <args>' PythonJedi << EOF try: import foo except Exception as excinfo: pass EOF
From a quick look this would require "only" to handle the heredoc for user commands, which is currently done in parse_cmd_lua: https://github.com/Kuniwak/vint/blob/f78b0f034a70aa2d39130f6c5a3a21c6c61683e2/vint/_bundles/vimlparser.py#L1106
parse_cmd_lua
No branches or pull requests
vim-vimlparse cannot parse the script, but Vim can run it well:
And it raises the following error:
The text was updated successfully, but these errors were encountered: