Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 665 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 665 Bytes

winsplit.el

Commentary:

winsplit.el provides some simple commands for creating new windows in the way I like. The commands are designed to be assigned to obvious key bindings.

I like to use use-package and this is how I use this package:

(use-package winsplit
  :ensure t
  :bind*
  ("C-c <right>"   . winsplit-right)
  ("C-c <left>"    . winsplit-left)
  ("C-c <up>"      . winsplit-above)
  ("C-c <down>"    . winsplit-below)
  ("C-c C-<right>" . winsplit-right-load)
  ("C-c C-<left>"  . winsplit-left-load)
  ("C-c C-<up>"    . winsplit-above-load)
  ("C-c C-<down>"  . winsplit-below-load))