spacemacs

Kris C 2022-03-06T13:20:15.378139Z

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?

Kris C 2022-03-07T08:20:23.970589Z

Thanks, @jeff.terrell, but how do I do it permanently in configuration?

jeff.terrell 2022-03-07T13:47:21.125319Z

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
Kris C 2022-03-07T13:51:59.562049Z

Thanks!

jeff.terrell 2022-03-07T00:59:31.210439Z

SPC t c