Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/davep/winsplit.el
- Owner: davep
- License: gpl-3.0
- Created: 2017-04-10T07:14:55.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-10T12:15:07.000Z (over 7 years ago)
- Last Synced: 2025-01-20T06:59:24.635Z (17 days ago)
- Topics: elisp, emacs, emacs-lisp, gnu-emacs, lisp, window
- Language: Emacs Lisp
- Size: 15.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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))
```