This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-09-02
Channels
- # announcements (21)
- # bangalore-clj (1)
- # beginners (122)
- # calva (29)
- # cider (9)
- # cljdoc (1)
- # cljs-dev (7)
- # cljsrn (1)
- # clojure (84)
- # clojure-dev (11)
- # clojure-europe (2)
- # clojure-houston (2)
- # clojure-italy (31)
- # clojure-nl (5)
- # clojure-uk (37)
- # clojuredesign-podcast (3)
- # clojurescript (14)
- # cursive (66)
- # data-science (5)
- # datavis (1)
- # datomic (6)
- # fulcro (16)
- # graphql (4)
- # jobs (2)
- # music (1)
- # off-topic (20)
- # pedestal (1)
- # re-frame (2)
- # reagent (2)
- # shadow-cljs (155)
- # spacemacs (5)
- # tools-deps (5)
- # vim (8)
- # yada (1)
Quick question: how do people move between dots (`.`) in Clojure. e.g. given the text (`foo.bar.baz/func`) and your cursor is on the first f
of foo
, how would you move to the b
in baz
for example? I know in this case I can fb
, but do you use f.
?
I use f. or fb, I've never thought of having a find which went past. It's a good idea though, given we have t
@dominicm so you would just l
to the start of b
?
I would probably have used fb outside of a macro, or vim-sneak if b wasn't precise enough
Sorry, misread your earlier message, thanks that makes sense!