aboutsummaryrefslogtreecommitdiffstats
path: root/_spacemacs.d
diff options
context:
space:
mode:
Diffstat (limited to '_spacemacs.d')
-rw-r--r--_spacemacs.d/init.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el
index 3ddffe3..8ee388c 100644
--- a/_spacemacs.d/init.el
+++ b/_spacemacs.d/init.el
@@ -372,7 +372,12 @@
;; `trailing' to delete only the whitespace at end of lines, `changed' to
;; delete only whitespace for changed lines or `nil' to disable cleanup.
;; (default nil)
- dotspacemacs-whitespace-cleanup 'trailing
+ ;; NOTE: Currently, cannot *locally* disable whitespace cleanup when it
+ ;; is globally enabled with modes `all' or `trailing', but `changed'
+ ;; mode works OK.
+ ;; See: https://github.com/syl20bnr/spacemacs/issues/8221
+ ;dotspacemacs-whitespace-cleanup 'trailing
+ dotspacemacs-whitespace-cleanup 'changed
))