Add prelude-clean-whitespace-on-save to README.md
Also fix incorrect indentation in prelude-editor.el changes. Good catch bbotsov!
This commit is contained in:
parent
2860441f7e
commit
fcdae17485
2 changed files with 14 additions and 1 deletions
13
README.md
13
README.md
|
@ -312,6 +312,19 @@ personal config with the following bit of code:
|
||||||
(setq prelude-whitespace nil)
|
(setq prelude-whitespace nil)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you like `whitespace-mode` but prefer it to not automatically
|
||||||
|
cleanup your file on save, you can disable that behavior by setting
|
||||||
|
prelude-clean-whitespace-on-save to nil in your config file with:
|
||||||
|
|
||||||
|
```lisp
|
||||||
|
(setq prelude-clean-whitespace-on-save nil)
|
||||||
|
```
|
||||||
|
|
||||||
|
The prelude-clean-whitespace-on-save setting can also be set on a
|
||||||
|
per-file or directory basis by using a file variable or a
|
||||||
|
.dir-locals.el file.
|
||||||
|
|
||||||
|
|
||||||
#### Disable flyspell-mode
|
#### Disable flyspell-mode
|
||||||
|
|
||||||
If you're not fond of spellchecking on the fly:
|
If you're not fond of spellchecking on the fly:
|
||||||
|
|
|
@ -225,7 +225,7 @@
|
||||||
(flyspell-mode +1)))
|
(flyspell-mode +1)))
|
||||||
|
|
||||||
(defun prelude-cleanup-maybe ()
|
(defun prelude-cleanup-maybe ()
|
||||||
(when prelude-clean-whitespace-on-save (whitespace-cleanup)))
|
(when prelude-clean-whitespace-on-save (whitespace-cleanup)))
|
||||||
|
|
||||||
(defun prelude-enable-whitespace ()
|
(defun prelude-enable-whitespace ()
|
||||||
(when prelude-whitespace
|
(when prelude-whitespace
|
||||||
|
|
Loading…
Reference in a new issue