This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-05-05
Channels
- # announcements (7)
- # babashka (61)
- # beginners (146)
- # cider (4)
- # clj-kondo (25)
- # cljsrn (29)
- # clojars (30)
- # clojure (30)
- # clojure-australia (17)
- # clojure-europe (43)
- # clojure-italy (16)
- # clojure-nl (2)
- # clojure-spec (13)
- # clojure-sweden (7)
- # clojure-uk (8)
- # clojurescript (38)
- # cursive (12)
- # datomic (42)
- # defnpodcast (2)
- # dirac (1)
- # events (5)
- # fulcro (5)
- # graalvm (43)
- # graphql (11)
- # helix (6)
- # jackdaw (13)
- # jobs (4)
- # lambdaisland (8)
- # malli (12)
- # off-topic (83)
- # pathom (9)
- # podcasts-discuss (2)
- # re-frame (6)
- # reagent (3)
- # reitit (8)
- # remote-jobs (1)
- # shadow-cljs (40)
- # vim (21)
I feel like I’ve asked this before: did you change something in vim so the w
motion interprets foo.bar
as two words? similar for slashes I guess. From what I’m reading iskeyword
should do that but the option has both .
and /
in there and still when I hit w
I’m immediately placed at the end of the namespace
I have tried that, looks to behave the same as w
oetuh hey foo.bar baz.quux
With my cursor at the beginning of this line, repeatedly pressing W
takes me to the first character of each "word", so o
, h
, f
, b
I tried it with vim -u NONE
(taking my vimrc out of the equation) and the behavior is the same.
normal behaviour in vim is for - and . to be word separators
Gotcha, then it must be something with lispwords I guess
vim-iced have a command to fetch clojure docs https://liquidz.github.io/vim-iced/#_clojuredocs
https://github.com/SevereOverfl0w/vim-replant/blob/master/ftplugin/clojure_replant.vim#L31 I think it's this 🙂
https://github.com/tami5/lispdocs.nvim might be of interest if you use conjure at all too