From f860cc0d756a713e9371892bb51cf33a5c767692 Mon Sep 17 00:00:00 2001 From: fpi Date: Fri, 18 Sep 2020 15:52:20 +0200 Subject: Add functions to split window left and above --- emacs-init.org | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/emacs-init.org b/emacs-init.org index 1e337eb..6f6badd 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -2885,13 +2885,24 @@ better performance. =fit-window-to-buffer= automatically shrinks the current buffer based on the amount of displayed text. #+begin_src emacs-lisp - (use-package window - :init - <> - :custom - (fit-window-to-buffer-horizontally t) - :bind (:map fpi-map ("s" . fit-window-to-buffer)) - ) +(use-package emacs % windows.el does not (provide 'windows) + :init + <> + :custom + (fit-window-to-buffer-horizontally t) + :config + (defun split-window-left (&optional size) + (interactive "P") + (split-window-right size) + (other-window 1)) + (defun split-window-above (&optional size) + (interactive "P") + (split-window-below size) + (other-window 1)) + :bind + (:map global-map ("C-x C-3" . split-window-left)) + (:map global-map ("C-x C-2" . split-window-above)) + (:map fpi-map ("s" . fit-window-to-buffer))) #+end_src *** Window rules #+begin_src emacs-lisp :noweb-ref window -- cgit v1.2.3