LanguageServer.jl icon indicating copy to clipboard operation
LanguageServer.jl copied to clipboard

Documentation for const aliases

Open fredrikekre opened this issue 1 year ago • 0 comments

In e.g.

"""
    foo()

Do some foo.
"""
function foo()
end

const bar = foo

foo    # <- Hover here gives foo docs
bar    # <- Would be nice if hover here also showed foo docs

It would be nice if hovering over bar would give the documentation for foo. This works in the REPL.

fredrikekre avatar Sep 28 '22 06:09 fredrikekre