solargraph icon indicating copy to clipboard operation
solargraph copied to clipboard

Question/Bug Symbols jumping is not supported.

Open praveendhawan opened this issue 4 years ago • 1 comments

Lets say I have a file which have this code

class A
  def abc
    puts "in abc"
    public_send(:dop) # try to jump from dop here
  end

  def dop
    puts "in dop"
  end
end

Actual - Trying to goto definition from symbol :dop fails. the result returned by solargraph is []

Expected - It should have gone to dop method.

Where its useful - let's say we have before_action's in the controller and we want to jump to the definition of the method.

praveendhawan avatar Mar 11 '20 13:03 praveendhawan

I miss this feature when using a LSP-based editor with solargraph. :cry:

hugopl avatar Jul 07 '20 19:07 hugopl