spacemacs/layers/+checkers/syntax-checking/funcs.el

49 lines
1.8 KiB
EmacsLisp

;;; funcs.el --- Syntax Checking Layer functions File for Spacemacs
;;
;; Copyright (c) 2012-2022 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;; 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/>.
(defun spacemacs/enable-flycheck (mode)
"Use flycheck in MODE by default, if `syntax-checking-enable-by-default' is
true."
(when (and syntax-checking-enable-by-default
(listp flycheck-global-modes)
(not (eq 'not (car flycheck-global-modes))))
(add-to-list 'flycheck-global-modes mode)))
;; 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)
(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))))