vim-jp / vim-vimlparser

Vim script parser
Other
165 stars 25 forks source link

Fix heredoc rlist and body: the type should be s:Node not string #177

Closed itchyny closed 3 years ago

itchyny commented 4 years ago

Heredoc was implemented in #120. The current implementation appends string to rlist and body, but they should be arrays of s:Node. This p/r fixes this typing bugs.

mattn commented 3 years ago

Thank you