32 lines
754 B
EmacsLisp
32 lines
754 B
EmacsLisp
;;; defuns-flycheck.el
|
|
;; for ../core-flycheck.el
|
|
|
|
;;;###autoload
|
|
(defun narf|flycheck-enable-maybe ()
|
|
(unless (or (bound-and-true-p org-src-mode)
|
|
(eq major-mode 'org-mode))
|
|
(flycheck-mode +1)))
|
|
|
|
;;;###autoload
|
|
(defun narf*flycheck-buffer ()
|
|
(when (bound-and-true-p flycheck-mode)
|
|
(flycheck-buffer)))
|
|
|
|
;;;###autoload
|
|
(defun narf/flycheck-next-error ()
|
|
(interactive)
|
|
(call-interactively
|
|
(if (bound-and-true-p flycheck-mode)
|
|
'flycheck-next-error
|
|
'next-error)))
|
|
|
|
;;;###autoload
|
|
(defun narf/flycheck-previous-error ()
|
|
(interactive)
|
|
(call-interactively
|
|
(if (bound-and-true-p flycheck-mode)
|
|
'flycheck-previous-error
|
|
'previous-error)))
|
|
|
|
(provide 'defuns-flycheck)
|
|
;;; defuns-flycheck.el ends here
|