Added flycheck mode toggle and override standard next / prev error

Conflicts:
	spacemacs/packages.el
This commit is contained in:
Rich Alesi 2014-12-21 22:18:50 -07:00 committed by syl20bnr
parent 1c22e18e9d
commit fc3e341bb9

View file

@ -871,9 +871,12 @@ determine the state to enable when escaping from the insert state.")
(defun spacemacs/init-flycheck ()
(use-package flycheck
:commands flycheck-mode
:defer t
:init
(progn
(evil-leader/set-key
"ef" 'flycheck-mode)
(dolist (mode '(c
coffee
js
@ -963,11 +966,14 @@ determine the state to enable when escaping from the insert state.")
:fringe-face 'flycheck-fringe-info)
;; key bindings
(evil-leader/set-key
"fc" 'flycheck-clear
"fl" 'flycheck-list-errors
"fn" 'flycheck-next-error
"fp" 'flycheck-previous-error))))
(add-hook 'flycheck-mode-hook '(lambda ()
(evil-leader/set-key
"ec" 'flycheck-clear
"el" 'flycheck-list-errors
"en" 'flycheck-next-error
"ep" 'flycheck-previous-error)
))
)))
(defun spacemacs/init-flycheck-ledger ()
(eval-after-load 'flycheck