Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nschum/window-numbering.el

Emacs: Numbered window shortcuts
https://github.com/nschum/window-numbering.el

Last synced: 7 days ago
JSON representation

Emacs: Numbered window shortcuts

Awesome Lists containing this project

README

        

window-numbering
================

Numbered window shortcuts for Emacs

[![Build Status](https://travis-ci.org/nschum/window-numbering.el.png?branch=master)](https://travis-ci.org/nschum/window-numbering.el)

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