This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-12-13
Channels
- # adventofcode (77)
- # beginners (132)
- # boot (11)
- # cider (40)
- # clara (10)
- # cljsjs (1)
- # cljsrn (4)
- # clojure (148)
- # clojure-android (1)
- # clojure-greece (5)
- # clojure-italy (5)
- # clojure-nl (7)
- # clojure-spec (57)
- # clojure-uk (9)
- # clojurescript (115)
- # core-matrix (1)
- # cursive (3)
- # data-science (1)
- # datomic (1)
- # duct (7)
- # emacs (20)
- # fulcro (29)
- # funcool (4)
- # graphql (31)
- # instaparse (15)
- # java (1)
- # jobs (6)
- # jobs-discuss (95)
- # leiningen (2)
- # off-topic (30)
- # om (4)
- # onyx (7)
- # pedestal (6)
- # quil (4)
- # re-frame (52)
- # reagent (59)
- # rum (1)
- # spacemacs (3)
- # specter (61)
- # test-check (3)
Is it possible to jump to previous position of cursor somehow (and to previous of previous of previous too)? For example, I switched to definition of a symbol or used incremental search and want to go back a few times.
Did you jump to definition using CIDER's M-.
? If so I recommend: `M-, runs the command cider-pop-back (found in cider-mode-map), which
is an alias for ‘xref-pop-marker-stack’ in ‘cider-util.el’.`
@U05092LD5 That's exactly what I'm doing. Thank you a lot, will use M-,
.
@chris pop-global-mark
is a bit crude. It works for switching back to previous buffer but doesn't accurately remember previous positions of cursor in the same buffer. Thank you, it's better than nothing so I will find uses for that.
@ghsgd2 if you're using evil mode, I suggest evil-jump-backward
. Typically bound to C-o
, I believe.
basically, it routes it through the Hyper keymap (which nothing uses because no one really has a Hyper key) and maps something in the hyper keymap to jump forward
or if you're on spacemacs you can just use dotspacemacs-distinguish-gui-tab t
in the init function
@eggsyntax, @chris Thank you! I think it's time for me to learn evil mode. 🙂