This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-08-04
Channels
- # arachne (1)
- # beginners (41)
- # boot (92)
- # capetown (8)
- # cider (10)
- # cljsjs (4)
- # cljsrn (42)
- # clojure (94)
- # clojure-india (1)
- # clojure-russia (48)
- # clojure-sanfrancisco (1)
- # clojure-spec (34)
- # clojure-uk (13)
- # clojurescript (29)
- # cursive (12)
- # datavis (4)
- # datomic (10)
- # dirac (63)
- # editors-rus (16)
- # emacs (57)
- # funcool (5)
- # hoplon (22)
- # jobs (2)
- # lein-figwheel (3)
- # leiningen (5)
- # onyx (51)
- # other-languages (2)
- # proton (1)
- # protorepl (2)
- # re-frame (34)
- # remote-jobs (1)
- # sfcljs (5)
- # spacemacs (1)
- # specter (2)
- # sql (20)
- # test-check (54)
- # yada (1)
This is where you’ll want to look to disable that. https://github.com/bbatsov/prelude/blob/555abd9a2fe3f55a0cb35d4b58f54d6cc32cebc6/core/prelude-editor.el#L346
My guess is that if you simply redefine it to not include lines-tail
it will solve your problem.
Probably some useful emacs to learn: type such a long line, go on the thing you don’t like how it’s colored
There are text properties here:
cider-locals [Show]
face (whitespace-line)
fontified t
help-echo cider--help-echo
if you just want to see it go away, M-x whitespace-mode, but as we discussed some parts are useful 😉
if you just want the whitespace highlighting for long lines to be less obtrusive, change the face; if you don’t want it at all, change what whitespace-mode highlights on, if you actually just want it to complain at 160….
Face: whitespace-line (sample) (customize this face)
Documentation:
Face used to visualize "long" lines.
See `whitespace-line-column'.
Defined in `whitespace.el'.
Family: unspecified
Foundry: unspecified
Width: unspecified
Height: unspecified
Weight: unspecified
Slant: unspecified
Foreground: #DC8CC3
DistantForeground: unspecified
Background: #3F3F3F
Underline: unspecified
Overline: unspecified
Strike-through: unspecified
Box: unspecified
Inverse: unspecified
Stipple: unspecified
Font: unspecified
Fontset: unspecified
Inherit: unspecified
[back]
so if i want to disable whitespace highlighting for long lines only then I should customize the whitespace-line
face?
if you just want it to be e.g. a lighter background, but still tell you, then you want to customize the face
if you just want to disable that portion of whitespace-mode, see bozhidar’s link, or customize that
bozhidar’s link tells how to disable whitespace mode completely and i would like to disable only this one feature 🙂
@bozhidar: I wonder if that’s why I can’t seem to get customize to actually honor my customization for that face