[Fix #878] Add flycheck-pos-tip

So flycheck won't have to rely on the minibuffer to display its error
messages anymore, and won't conflict with modes like el-doc or
semantic-idle-summary-mode that displays useful information in the
minibuffer.
This commit is contained in:
Tu Do 2015-03-20 23:50:36 +07:00 committed by syl20bnr
parent 5a2e130a09
commit abb36fe364

View file

@ -60,6 +60,7 @@
fish-mode
flx-ido
flycheck
flycheck-pos-tip
flyspell
;; required for update
gh
@ -1173,7 +1174,13 @@ which require an initialization must be listed explicitly in the list.")
(evil-leader/set-key
"ec" 'flycheck-clear
"ef" 'flycheck-mode
"el" 'flycheck-list-errors))))
"el" 'flycheck-list-errors)
;; flycheck-pos-tip
(use-package flycheck-pos-tip
:defer t
:init
(setq flycheck-display-errors-function #'flycheck-pos-tip-error-messages)))))
(defun spacemacs/init-flyspell ()
(use-package flyspell