This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-08-01
Channels
- # announcements (1)
- # babashka (18)
- # babashka-sci-dev (10)
- # beginners (17)
- # clj-on-windows (21)
- # clj-yaml (4)
- # cljs-dev (33)
- # cljsrn (2)
- # clojure (51)
- # clojure-austin (3)
- # clojure-doc (22)
- # clojure-europe (17)
- # clojure-greece (4)
- # clojure-norway (6)
- # clr (4)
- # conjure (7)
- # datalog (14)
- # emacs (11)
- # hyperfiddle (121)
- # introduce-yourself (1)
- # kaocha (1)
- # malli (8)
- # practicalli (1)
- # releases (1)
- # shadow-cljs (26)
- # squint (2)
Hate to ask this simple question, but can't figure it out. I feel I ought to know. gd
is mapped by default to def_word
, which goes to the definition of a function. What is the opposite: bring me back to where I was when I last executed gd
? In some earlier configuration I had, this kind of action was mapped to C-[
, which I think is traditional for vim. However, C-[
/`^[` is currently unmapped and just jumps up a line within the buffer, and I've failed in my searchers for either a keymapping or a function that can be mapped for this purpose in the main Conjure and clojure-client documentation.
Try C-t
. I think that's the traditional opposite of C-]
. C-]
is sort of like gd
/ go-to-definition, but in a not-as-smart way based on tags
EDIT: I meant C-]
, not C-[
Thanks @U0AHJUHJN! C-t
did it.