This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-11-20
Channels
- # beginners (17)
- # boot (19)
- # chestnut (1)
- # cider (25)
- # clara (1)
- # cljs-dev (15)
- # cljsrn (10)
- # clojars (9)
- # clojure (182)
- # clojure-brasil (27)
- # clojure-dusseldorf (2)
- # clojure-gamedev (5)
- # clojure-germany (1)
- # clojure-greece (2)
- # clojure-italy (18)
- # clojure-poland (5)
- # clojure-romania (3)
- # clojure-russia (29)
- # clojure-serbia (6)
- # clojure-spec (9)
- # clojure-uk (77)
- # clojure-ukraine (1)
- # clojurescript (61)
- # cursive (5)
- # datomic (20)
- # defnpodcast (1)
- # emacs (10)
- # fulcro (2)
- # graphql (2)
- # hoplon (11)
- # lumo (4)
- # off-topic (50)
- # om (3)
- # onyx (26)
- # other-languages (39)
- # parinfer (2)
- # pedestal (5)
- # re-frame (32)
- # reagent (48)
- # rum (7)
- # shadow-cljs (10)
- # spacemacs (29)
- # sql (10)
- # unrepl (58)
- # vim (3)
Just updated to the latest version of SM -- window numbering is now handled by a custom version of winum
(per https://github.com/syl20bnr/spacemacs/commit/de47040a3ae3f1ac64a6dba866c42112fe480299 ). I notice, unfortunately, that the change has removed both the alt-<number>
and SPC <number>
shortcuts for switching windows.
Anyone else encountered this and have a good workaround/fix?
Answer, for anyone else who encounters this: https://github.com/deb0ch/emacs-winum#keybindings
I hate when critical keybindings are removed out from under you by an update, grumble grumble 🗯️
Resolved that last: I suspect there may have been a change to the custom-set-variables
format at the bottom of .spacemacs
(the auto-added stuff); SM had created a 2nd such section and presumably they were clashing. I commented out the whole auto-added section and restarted, and things seem ok now.
Yeah I’ve also gotten that winum error @eggsyntax
also does anyone else have a good guide on using evil mode? Like going from intermediate level user to an advanced one?
good ways of learning Vim keybindings include:
- playing Vim-adventures
- using vimtutor
(Spacemacs includes it, but it's not very good IMO), so you should probably use the one included in Vim
- if you have android phone - I'd recommend trying app called "Vim master", it's good way to learn Vim motions
Vim master includes some quite esoteric ways to edit text. Some of them would raise questions (is this really an effective way to do things)
I see. I am at the point where I am regularly discovering new things and use vim keybindings all the time. I just want to keep going and feel 100% confident that I’ve gotten all or almost all vim keybinding useful knowledge under my belt
so if you type di
and then wait, which-key
will come up with all of your possibilities, which vim doesn't really provide outside of an esoteric help section
that’s a great point @U050AFD41 I guess I just gotta keep doing stuff like that
> so if you type di
and then wait
set dotspacemacs-which-key-delay
to 0... so you don't have to wait 😉