Skip to content
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

Cannot parse inline python #33

Open
Kuniwak opened this issue Dec 7, 2016 · 2 comments
Open

Cannot parse inline python #33

Kuniwak opened this issue Dec 7, 2016 · 2 comments

Comments

@Kuniwak
Copy link
Member

Kuniwak commented Dec 7, 2016

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
@mattn
Copy link
Member

mattn commented May 25, 2017

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.

@blueyed
Copy link
Contributor

blueyed commented Aug 6, 2017

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants