todesking / ruby_hl_lvar.vim

Highlight Ruby local variables
MIT License
53 stars 10 forks source link

Highlight `for` params #13

Closed pocke closed 7 years ago

pocke commented 7 years ago
 # The `x` is not highlighted.
for x in [] do
end

 # The `x`, `y` and `z` are not highlighted.
for x, *y, z in [] do
end

The change make to highlight the above params.