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
endfunction の後の行の解析が捨てられているようです.
endfunction
function! Hoo() abort echo 3 endfunction | echo 2345 if 1 echo 4 endif | echo 456
なファイルを対象に vimlparser#test() すると、以下が出力され, (echo 2345) がありません
vimlparser#test()
(echo 2345)
(function (Hoo) (echo 3)) (if 1 (echo 4)) (echo 456)
以下の部分と思います
vim-vimlparser/autoload/vimlparser.vim
Line 1434 in 11d2bee
The text was updated successfully, but these errors were encountered:
No branches or pull requests
endfunction
の後の行の解析が捨てられているようです.なファイルを対象に
vimlparser#test()
すると、以下が出力され,(echo 2345)
がありません以下の部分と思います
vim-vimlparser/autoload/vimlparser.vim
Line 1434 in 11d2bee
The text was updated successfully, but these errors were encountered: