vim-jp / vim-vimlparser

Vim script parser
Other
165 stars 25 forks source link

Ignore def for vim9script #195

Closed ryu-ichiroh closed 1 year ago

mattn commented 1 year ago

Please skip comnent tokens.

ryu-ichiroh commented 1 year ago

Which does it mean?

Outside of def?

" F2 returns ...
def F2()
enddef

Or inside?

def F2()
# endef
enddef
ryu-ichiroh commented 1 year ago

Definitely you said the latter.

ryu-ichiroh commented 1 year ago

@mattn I'm finished. Please review the PR again.

https://github.com/vim-jp/vim-vimlparser/blob/4b2f1e250a8db39884269968a98fb153190296f4/test/test_vim9script.vim#L1-L13

mattn commented 1 year ago

LGTM, Thank you.