lsp

:clojure-lsp: Clojure implementation of the Language Server Protocol: https://clojure-lsp.io/
2021-05-12T07:03:24.179600Z

What is the emacs command to navigate to the definition of a qualified keyword? :) I keep forgetting it haha

2021-05-13T15:05:34.182100Z

What I find odd is, lsp manage to expand correctly the alias and keyword, but I don’t have a shortcut to navigate to the namespace.

ericdallo 2021-05-13T15:07:50.182300Z

maybe we could make go to declaration go to the ns, while go to definition keep working as it is

ericdallo 2021-05-13T15:11:03.182500Z

ATM clojure-lsp doesn't implement go to declaration as is not common for clojure

borkdude 2021-05-12T07:20:34.179900Z

probably just M-. ?

ericdallo 2021-05-12T11:22:29.180Z

lsp-find-definition but it will work only for certain macro keywords like fulcro or clojure spec

ericdallo 2021-05-12T11:22:50.180200Z

Otherwise, you can use lsp-find-references to get all references of that keyword

2021-05-12T14:18:50.180400Z

which is xref-find-definitions