https://github.com/pjones/ido-select-window
Emacs package to select a window using ido and buffer names.
https://github.com/pjones/ido-select-window
Last synced: 4 months ago
JSON representation
Emacs package to select a window using ido and buffer names.
- Host: GitHub
- URL: https://github.com/pjones/ido-select-window
- Owner: pjones
- License: other
- Created: 2013-12-20T18:55:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2017-01-10T03:26:27.000Z (over 8 years ago)
- Last Synced: 2024-12-26T22:19:02.421Z (6 months ago)
- Language: Emacs Lisp
- Size: 3.91 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ido-select-window
A tiny package to change the window focus in Emacs using `ido` and the
name of each window's buffer.Yes, there are plenty of packages for switching the window focus. As
far as I can tell they're all based on the position of a window
(e.g. focus left, focus right, etc.) The [switch-window] [] package
makes this a bit more visual but covers up the contents of the window
and doesn't play nicely with my IRC buffers.I thought it would be an interesting experiment to use `ido` and the
mini-buffer for switching windows based on buffer names. That's what
this package does.[switch-window]: https://github.com/dimitri/switch-window
# Usage
If you're using the Emacs packaging system then this package should
automatically load. If not, require it.Then set a key binding. I like the idea of replacing `C-x o`:
(global-set-key (kbd "C-x o") 'ido-select-window)