This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Different keyword for function and class definitions. #89
Open
Description
Some syntaxes (like Solarized Dark and Solarized Light) need special highlight for function and class definitions.
The problem is that I can't find a way to differentiate the blocks end
s from functions and classes end
s.
Is there a way to do:
class Foo
def bar
[].each do |e|
end # normal end (no special color) 👍
end # <--- Special class (close def)
end # <--- Special class (close class)
I'd be happy to try to help if you're open to some help.