You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 31, 2023. It is now read-only.
Operating System: iMac (Retina 5K, 27-inch, Late 2014)
Hardware (optional):
Make sure you have ruby, ruby-debug-ide and ruby-debug-basex19 installed before submitting your issue -- thank you !
Expected behavior
def new end
When I go to a .rb file I expect the words def & end to be highlighted when I place my cursor to the right of def or end.
Actual behavior
def & end do not highlight. If I write a new method (name does not matter) then def & end will highlight as normal in that file. When I go to a new file, I have to create a method before def and end properly highlight again
Steps to reproduce the problem
open up a ruby file that has some basic methods ex: test.rb
def hello
end
put your cursor to the right of def or end. (notice that it does not highlight)
in that same file, write another method (doesn't matter what it is). Notice that now when you place your cursor to the right of def or end highlighting is now working. test.rb