This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-12-14
Channels
- # adventofcode (107)
- # aleph (1)
- # announcements (8)
- # beginners (57)
- # boot (3)
- # braveandtrue (18)
- # calva (374)
- # cider (6)
- # cljdoc (8)
- # cljs-dev (140)
- # clojure (199)
- # clojure-berlin (5)
- # clojure-europe (3)
- # clojure-finland (1)
- # clojure-hamburg (4)
- # clojure-italy (17)
- # clojure-nl (16)
- # clojure-spec (2)
- # clojure-uk (70)
- # clojurescript (29)
- # component (2)
- # cursive (10)
- # datomic (44)
- # docker (1)
- # figwheel (3)
- # fulcro (13)
- # immutant (2)
- # juxt (5)
- # leiningen (53)
- # nrepl (3)
- # off-topic (7)
- # pedestal (3)
- # re-frame (7)
- # ring (3)
- # ring-swagger (5)
- # rum (5)
- # shadow-cljs (14)
- # spacemacs (6)
- # specter (12)
- # tools-deps (11)
- # unrepl (11)
- # vim (7)
How can I set up/use ggtags in spacemacs/cider? I can see some ggtags bits in clojure layer, but I can't figure out what steps should I perform in order to make it work https://github.com/syl20bnr/spacemacs/blob/master/layers/%2Blang/clojure/packages.el#L290 ?
In IntelliJ you can hit CMD
and the click on a variable and it will jump to the file where it is defined. By any chance does emacs have this functionality???
cider does have it if you've started a repl: cider-find-var
.
Most often, I use g d
(jump-to-definition) which is like cider-find-var
and is able to jump to the symbol by name even without the REPL (at least in the same file)
Well, since I use Holy mode, I'll just leave it here. M-.
to cider-find-var
and M-,
to come back from the definition file with cider-pop-back
.