↧
Answer by Aleksei Matiushkin for How to add syntax highlighting for custom...
Atom is an Electron app, based on Chrome. Feel free to press Ctrl+Shift+I and examine whatever you want with Chrome Developer Tools:As you can see, the local method call is not granted with any class,...
View ArticleHow to add syntax highlighting for custom methods in Atom for Ruby
For example, in the following class, I want syntax highlighting for helper_method(@x, @y) (line 1 in the main method.)class test def new(x, y) @x = x @y = y end def main result = helper_method(@x, @y)...
View Article