Find a file
2016-12-08 19:58:49 +01:00
.dir-locals.el Added dir-locals file. 2011-06-05 20:31:46 +02:00
.gitignore Importing archived version 0.9. 2009-02-23 20:50:23 +01:00
.travis.yml Update travis-ci configuration. 2014-09-23 18:54:23 +02:00
README.md Add basic README. 2013-09-02 18:30:16 +02:00
tests.el Add .travis.yml. 2013-09-02 18:22:07 +02:00
window-numbering.el Simplify implementation when frame-local and clarify the code. 2016-12-08 19:58:49 +01:00

window-numbering

Numbered window shortcuts for Emacs

Build Status

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)))