about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/functions.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-09-01T12·44+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-09-01T13·00+0100
commit718899c629bb1b8bd05285c2e8c5a1709e8e5226 (patch)
treebd360e7b7779e8d8f05df3eb1059887ede6ed8c7 /emacs/.emacs.d/wpc/functions.el
parent3b2fffe954e3927673e403ee124a78f78bb1c45c (diff)
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.
Diffstat (limited to 'emacs/.emacs.d/wpc/functions.el')
-rw-r--r--emacs/.emacs.d/wpc/functions.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/functions.el b/emacs/.emacs.d/wpc/functions.el
index 6eabec49f2e0..c0b873aaff14 100644
--- a/emacs/.emacs.d/wpc/functions.el
+++ b/emacs/.emacs.d/wpc/functions.el
@@ -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))