More Elisp linting

In order for this to scale, I need to solve two things:
1. Ad-hoc ignore fill-column rules for URLs and other exceptions.
2. Run Elisp flychecker without evaluating my Elisp code and firing its
   side-effects.
This commit is contained in:
William Carroll 2020-09-01 13:44:18 +01:00
parent 3b2fffe954
commit 718899c629
19 changed files with 62 additions and 67 deletions

View file

@ -13,17 +13,19 @@
;;; Code:
(defun functions-evil-window-vsplit-right ()
"Split the window vertically and focus the right half."
(interactive)
(evil-window-vsplit)
(windmove-right))
(defun functions-evil-window-split-down ()
"Split the window horizontal and focus the bottom half."
(interactive)
(evil-window-split)
(windmove-down))
(defun functions-create-snippet ()
"Creates a window split and then opens the Yasnippet editor."
"Create a window split and then opens the Yasnippet editor."
(interactive)
(evil-window-vsplit)
(call-interactively #'yas-new-snippet))