Is it somehow possible to highlight all occurrences of a function and (jump to) its definition in the Clojure-editor LightTable?
If I for example have the following code
(defn a [x] (* x x))
(str "abc" (a 4))
;; ... some more code ...
(a 2)
When I'm with my cursor at one of the a's, I'd like to have all a's that are related to the function beeing highlighted. So the a
in the String abc
should not be highlighted.
It would be also nice to jump directly to the point where a
is defined. (I tried Strg + .
, but that did not work)