This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-06-10
Channels
- # aleph (4)
- # announcements (27)
- # aws (12)
- # aws-lambda (1)
- # beginners (207)
- # boot (4)
- # calva (8)
- # cider (9)
- # clj-kondo (9)
- # cljs-dev (27)
- # cljsrn (6)
- # clojure (104)
- # clojure-android (3)
- # clojure-dev (9)
- # clojure-finland (2)
- # clojure-italy (18)
- # clojure-spec (8)
- # clojure-uk (100)
- # clojurescript (43)
- # clojutre (1)
- # core-async (49)
- # cursive (18)
- # data-science (3)
- # duct (24)
- # events (2)
- # fulcro (27)
- # immutant (1)
- # off-topic (32)
- # om (2)
- # onyx (2)
- # pathom (14)
- # pedestal (2)
- # planck (3)
- # re-frame (38)
- # reagent (7)
- # reitit (10)
- # rewrite-clj (7)
- # ring-swagger (3)
- # shadow-cljs (32)
- # spacemacs (63)
- # test-check (16)
- # tools-deps (5)
- # vim (21)
It's me again 😛 , is there a way in Evil to have j/k move into wrapped lines? For example, if you use up/down in insert mode, it moves through the wrapped lines. I find it very slow to have to navigate left/right into a wrapped line, even if I use w and b.
if you want it on always:
(add-hook 'prog-mode-hook 'spacemacs/toggle-visual-line-navigation-on)
in dotspacemacs/user-configThink I found another bug, flyspell transient state, c seems to correct the previous word, the the one under point.
yeah, if you need dictionaries, thesaurus, etc. check out my layer: https://github.com/agzam/dot-spacemacs/blob/315acdf2f84addeb3cb86fee00b3989b17f52c61/layers/ag-lang-tools/packages.el

I'm terrible with counting, so vwwwwwy
it is.
But the fastest for me is just moving the cursor normally and using whole-line(`yy`) or to-the-end-of-the-line (`Y`).
Both respect sexps if you toogle some config.
And another small question, can you repeat navigation? .
seems to only repeat operators. But say I want to repeat fy
is there a key for that?
Seems like to repeat f it is ;
, and normally, going back is ,
, but Evil rebinds that as major mode leader. So not sure if there is another one.
Now I'm conflicted though. My biggest motivation for moving to Evil from Holy is that I learn something more widely applicable, like can also use it in Vi when ssh-ing and all. But I'm quickly realizing that Emacs majestic custumization can already drastically improve on Vi 😛
> Emacs majestic custumization can already drastically improve on Vi As I said many times: “Emacs vims betters than Vim can vim”
Seems like to repeat f it is ;
, and normally, going back is ,
, but Evil rebinds that as major mode leader. So not sure if there is another one.
evil-repeat-find-char-reverse
is unbound it seems, so no default binding to go back on a f
in evil
I think it’s s(
provided by https://github.com/emacs-evil/evil-surround
I'm terrible with counting, so vwwwwwy
it is.
But the fastest for me is just moving the cursor normally and using whole-line(`yy`) or to-the-end-of-the-line (`Y`).
Both respect sexps if you toogle some config.