diff options
Diffstat (limited to 'emacs/.emacs.d/wpc/functions.el')
-rw-r--r-- | emacs/.emacs.d/wpc/functions.el | 4 |
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)) |