bcccadcf12
This allows the user to navigate windows across frames. 3 scopes are possible: - frame-local: similar to old behaviour, one number set per frame - visible: Only number windows in visible frames - global: Number windows in all frames |
||
---|---|---|
.dir-locals.el | ||
.gitignore | ||
.travis.yml | ||
README.md | ||
tests.el | ||
window-numbering.el |
window-numbering
Numbered window shortcuts for Emacs
Enable window-numbering-mode
and use M-1 through M-0 to navigate.
If you want to affect the numbers, use window-numbering-before-hook or window-numbering-assign-func. For instance, to always assign the calculator window the number 9, add the following to your .emacs:
(setq window-numbering-assign-func
(lambda () (when (equal (buffer-name) "*Calculator*") 9)))