diff options
author | Thanos Apollo <[email protected]> | 2023-01-21 14:09:33 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-01-21 14:09:33 +0200 |
commit | 2e5f8c1421cf5af4bada6246a1fdfe2cc6d29216 (patch) | |
tree | 7743407a499de78cb95613da0dafdd3a39468eea /.emacs.d/snippets | |
parent | 57476ba775269d2fef71dcdf3d7c02c506959d44 (diff) |
snippets: add mini buffer functions
Diffstat (limited to '.emacs.d/snippets')
-rw-r--r-- | .emacs.d/snippets/functions.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.emacs.d/snippets/functions.el b/.emacs.d/snippets/functions.el index cab2fa0..64a4af8 100644 --- a/.emacs.d/snippets/functions.el +++ b/.emacs.d/snippets/functions.el @@ -106,5 +106,14 @@ (interactive) (eshell 'N)) +(defun make-mini-buffer () + (interactive) + (split-window-below 40) + (other-window 1)) + +(defun make-mini-geiser () + (interactive) + (split-window-below 60) + (geiser nil)) ;;; my-functions.el ends here |