2015-08-28 11:02:20 +00:00
|
|
|
;;; funcs.el --- Syntax Checking Layer functions File for Spacemacs
|
|
|
|
;;
|
2021-03-22 20:11:29 +00:00
|
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
2015-08-28 11:02:20 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
2021-03-24 03:31:44 +00:00
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
;;
|
|
|
|
;; This program is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
;;
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-08-28 11:02:20 +00:00
|
|
|
|
2017-02-14 03:27:29 +00:00
|
|
|
(defun spacemacs/enable-flycheck (mode)
|
2016-01-27 20:08:25 +00:00
|
|
|
"Use flycheck in MODE by default, if `syntax-checking-enable-by-default' is
|
|
|
|
true."
|
|
|
|
(when (and syntax-checking-enable-by-default
|
2016-02-01 04:16:50 +00:00
|
|
|
(listp flycheck-global-modes)
|
|
|
|
(not (eq 'not (car flycheck-global-modes))))
|
2017-02-14 03:27:29 +00:00
|
|
|
(add-to-list 'flycheck-global-modes mode)))
|
2017-02-15 03:16:26 +00:00
|
|
|
|
|
|
|
;; toggle flycheck window
|
|
|
|
(defun spacemacs/toggle-flycheck-error-list ()
|
|
|
|
"Toggle flycheck's error list window.
|
|
|
|
If the error list is visible, hide it. Otherwise, show it."
|
|
|
|
(interactive)
|
|
|
|
(-if-let (window (flycheck-get-error-list-window))
|
|
|
|
(quit-window nil window)
|
|
|
|
(flycheck-list-errors)))
|
|
|
|
|
|
|
|
(defun spacemacs/goto-flycheck-error-list ()
|
|
|
|
"Open and go to the error list buffer."
|
|
|
|
(interactive)
|
2019-07-24 05:36:24 +00:00
|
|
|
(if (flycheck-get-error-list-window)
|
|
|
|
(switch-to-buffer flycheck-error-list-buffer)
|
|
|
|
(progn
|
|
|
|
(flycheck-list-errors)
|
|
|
|
(switch-to-buffer-other-window flycheck-error-list-buffer))))
|