Add transpose-frame and keybinding

This commit is contained in:
Jeremy Dormitzer 2020-01-22 09:59:43 -05:00
parent 96ba2676a2
commit 91be50fbcc

View File

@ -1902,6 +1902,15 @@ Keybindings:
(leader-def-key "Fs" 'jdormit/set-frame-size)
#+END_SRC
* Transpose Frame
A handy utility that reverse the current frame window split (vertical to horizontal or vice-versa):
#+BEGIN_SRC emacs-lisp
(use-package transpose-frame
:defer t
:init
(leader-def-key "wt" 'transpose-frame))
#+END_SRC
* EShell
Easy keybinding to open EShell:
#+BEGIN_SRC emacs-lisp