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
Editor Plugin/LSP Client name and version: ElixirLS 0.19.0
Current behavior
Suppose we have a file like this
1defmoduleSomeModuledo2 @doc """
3 Some function.
4
5 See MyModule.my_fun/1
6 See `MyModule.my_fun/1`
7 """
8 def some_fun, do: 42
9 end
If I use go to definition on my_fun on line 5, it jumps to the definition of MyModule.my_fun/1. If I do the same with my_fun on line 6, it does not do anything. The same happens on MyModule and it's also the same with hover. If I remove the first backtick on line 6, it works. If I remove (only) the second backtick on line 6, it does not work.
Expected behavior
I would expect that go to definition and hover would work on line 6 (and also on line 5).
The text was updated successfully, but these errors were encountered:
Environment
and
(tested on both)
Current behavior
Suppose we have a file like this
If I use go to definition on
my_fun
on line 5, it jumps to the definition ofMyModule.my_fun/1
. If I do the same withmy_fun
on line 6, it does not do anything. The same happens onMyModule
and it's also the same with hover. If I remove the first backtick on line 6, it works. If I remove (only) the second backtick on line 6, it does not work.Expected behavior
I would expect that go to definition and hover would work on line 6 (and also on line 5).
The text was updated successfully, but these errors were encountered: