This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-03-06
Channels
- # babashka-sci-dev (56)
- # beginners (13)
- # biff (3)
- # calva (24)
- # cider (2)
- # clj-together (2)
- # clojure (38)
- # clojure-europe (6)
- # clojure-norway (2)
- # clojurescript (1)
- # cursive (5)
- # introduce-yourself (3)
- # pedestal (4)
- # polylith (5)
- # portal (11)
- # re-frame (7)
- # reitit (6)
- # shadow-cljs (12)
- # spacemacs (5)
- # sql (7)
- # tools-deps (1)
Why is (vi) word motion in Spacemacs different than in normal vi(m)? If a variable is camelCase, w
moves by word (camel->Case). How can I disable that?
SPC t c
Thanks, @U056QFNM5, but how do I do it permanently in configuration?
I did SPC h d k SPC t c
to figure out which emacs function gets called with the SPC t c
key sequence. It's spacemacs/toggle-camel-case-motion
. If I search similarly-named functions with SPC SPC toggle-camel
, it looks like there are some likely options, including a global variant bound to SPC t C-c
. Worst case you could add a function call to your dotspacemacs/user-init
(in you .spacemacs
file).
👍 1