This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-01-20
Channels
- # beginners (61)
- # cider (25)
- # cljsrn (7)
- # clojure (76)
- # clojure-austin (1)
- # clojure-russia (10)
- # clojure-uk (2)
- # clojurescript (96)
- # cursive (12)
- # datomic (38)
- # defnpodcast (9)
- # emacs (24)
- # fulcro (1)
- # graphql (5)
- # hoplon (3)
- # jobs (1)
- # keechma (20)
- # leiningen (4)
- # lumo (5)
- # off-topic (13)
- # perun (6)
- # re-frame (19)
- # reagent (1)
- # remote-jobs (2)
- # shadow-cljs (199)
- # sql (6)
- # vim (7)
what's a recommended way to jump at 'word' level within Clojure buffers?
e.g. in hello-my-friend
, if cursor if at h
, I may want to jump to m
and then to f
currently I only have a way to jump across whole tokens, i.e. from h
to d
subword
mode iirc works very well for this with standard forward word
good pointer, you made me realise that plain forward-word
/`backward-word` don't deal with FooBarBaz (only with foo-bar-baz) unless subword-mode
is enabled
backward-word
/ forward-word
seem good enough, hadn't bothered searching in good old M-x
(especially with the smex
improvement)
trying to accomplish what the screenshot here shows http://emacsredux.com/blog/2013/05/31/highlight-lines-that-exceed-a-certain-length-limit/
says about face
:
> Enable all visualizations which use special faces. This element has a special meaning: if it is absent from the list, none of the other visualizations take effect except space-mark, tab-mark, and newline-mark.
the "except" calls my attention. it's as if they were mandatory