diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-06-18 10:36:12 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-06-18 10:36:12 +0800 |
commit | d9792bf777a392ad7bb38dd9b8a52a93c2620583 (patch) | |
tree | 66859d74a11fba899447bacacead46ea6eaecea4 | |
parent | f6778b1a95fb1240f602ac1ee517462bbfc60615 (diff) | |
download | dotfiles-d9792bf777a392ad7bb38dd9b8a52a93c2620583.tar.bz2 |
spacemacs: explain the bug of "fci-mode" with "truncate-lines"
-rw-r--r-- | _spacemacs.d/init.el | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el index 068add5..94137c8 100644 --- a/_spacemacs.d/init.el +++ b/_spacemacs.d/init.el @@ -339,19 +339,17 @@ ;; Display tildes in the fringe on empty lines (global-vi-tilde-fringe-mode) ;; - ;; Activate column indicator in most mode, except for `org-mode' + ;; Enable fill column indicator in most mode, except for `org-mode' ;; Credit: https://github.com/syl20bnr/spacemacs/issues/4506 - ;; WARNING/XXX: - ;; 'fci-mode' has issues with 'truncate-lines' and 'company-mode' - ;; * 'fci-mode' will override 'truncate-lines' to 't' - ;; * with 'fci-mode' enabled and 'truncate-lines' set to 'nil', - ;; when the completion triggered, the 'truncate-lines' will be - ;; overridden to 't', which is very annoying. + ;; WARNING: + ;; `fci-mode' has issue with `truncate-lines' + ;; https://github.com/alpaker/Fill-Column-Indicator/issues/26 + ;(setq fci-handle-truncate-lines nil) ;(add-hook 'prog-mode-hook 'turn-on-fci-mode) ;(add-hook 'text-mode-hook 'turn-on-fci-mode) ;(add-hook 'org-mode-hook 'turn-off-fci-mode 'append) ;; - ;; mu4e + ;; mu4e: https://github.com/djcb/mu (push "~/.spacemacs.d/config" load-path) (require 'aly-mu4e-config nil t) ;; |