Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/davep/winsplit.el

Simple commands for splitting emacs windows
https://github.com/davep/winsplit.el

elisp emacs emacs-lisp gnu-emacs lisp window

Last synced: 11 days ago
JSON representation

Simple commands for splitting emacs windows

Awesome Lists containing this project

README

        

# 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`](https://github.com/jwiegley/use-package) and
this is how I use this package:

```elisp
(use-package winsplit
:ensure t
:bind*
("C-c " . winsplit-right)
("C-c " . winsplit-left)
("C-c " . winsplit-above)
("C-c " . winsplit-below)
("C-c C-" . winsplit-right-load)
("C-c C-" . winsplit-left-load)
("C-c C-" . winsplit-above-load)
("C-c C-" . winsplit-below-load))
```