m-demare/hlargs.nvim

Feature Suggestion: Color the iterator in loops

Opened this issue · 0 comments

Basically, implement the same thing this plugin already does for function arguments, but for loop iterators.

given this loop, the i could be colored

for i = 1, 10, 1 do
	print(i)	
end