vscode-ruby-symbols
vscode-ruby-symbols copied to clipboard
Outline incorrect when comment starts with `if`
If a comment inside a method begins with if
, the outline and breadcrumb views of symbols is incorrect
class MyClass
def method_1
# if in a comment
end
def method_2
end
end