2016-11-29 21:11:05 -05:00
|
|
|
[[https://github.com/syl20bnr/spacemacs][file:https://cdn.rawgit.com/syl20bnr/spacemacs/442d025779da2f62fc86c2082703697714db6514/assets/spacemacs-badge.svg]]
|
|
|
|
|
|
|
|
#+TITLE: Window numbers for Emacs !
|
|
|
|
|
|
|
|
* Contents :TOC:
|
|
|
|
- [[#introduction][Introduction]]
|
|
|
|
- [[#installation][Installation]]
|
|
|
|
- [[#how-to-use][How to use]]
|
|
|
|
- [[#configuration][Configuration]]
|
2016-12-12 04:20:39 -05:00
|
|
|
- [[#keybindings][Keybindings]]
|
2016-11-29 21:11:05 -05:00
|
|
|
- [[#customize-options][Customize options]]
|
2016-12-05 08:59:28 -05:00
|
|
|
- [[#configuration-file-example][Configuration file example]]
|
2016-11-29 21:11:05 -05:00
|
|
|
|
|
|
|
* Introduction
|
|
|
|
Window numbers for Emacs: Navigate your windows and frames using numbers !
|
|
|
|
|
|
|
|
This package is an extended and actively maintained version of the
|
|
|
|
https://github.com/nschum/window-numbering.el package by Nikolaj Schumacher,
|
|
|
|
with some ideas and code taken from https://github.com/abo-abo/ace-window.
|
|
|
|
|
|
|
|
This version brings, among other things, support for number sets across multiple
|
|
|
|
frames, giving the user a smoother experience of multi-screen Emacs.
|
|
|
|
|
|
|
|
* Installation
|
|
|
|
- Clone the repo:
|
|
|
|
|
|
|
|
#+BEGIN_SRC shell
|
|
|
|
cd /path/to/install/folder
|
|
|
|
git clone https://github.com/deb0ch/winum.el
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
- Add the following to your Emacs configuration:
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(add-to-list 'load-path "/path/to/install/folder/winum.el/")
|
|
|
|
|
2016-12-02 19:59:13 -05:00
|
|
|
(require 'winum)
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-02 19:59:13 -05:00
|
|
|
(winum-mode)
|
2016-11-29 21:11:05 -05:00
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
* How to use
|
2016-12-05 08:59:28 -05:00
|
|
|
- =select-window-[0..9]=
|
|
|
|
|
|
|
|
Use ~M-1~ to ~M-9~ to navigate windows numbered 1 to 9.
|
|
|
|
|
|
|
|
By default, ~M-0~ is bound to =select-window-0-or-10=, which behaves like
|
|
|
|
the other ones except that if 0 is not assigned it will act on the window 10
|
|
|
|
instead.
|
|
|
|
|
|
|
|
You can rebind this to the more straightforward =select-window-0= if you
|
|
|
|
prefer.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
- =select-window-by-number=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
If you happen to have more than 10 windows, you can use the
|
|
|
|
=select-window-by-number= function, bound by default to ~C-`~.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
This function allows several ways to input the window number:
|
|
|
|
|
|
|
|
- Use a numbered prefix argument.\\
|
|
|
|
*Ex:* ~C-1 C-2 C`~ to select window 12.
|
|
|
|
- Use a negative prefix argument to delete the window.\\
|
|
|
|
*Ex:* ~C-- C-1 C-2 C`~ to delete window 12.
|
|
|
|
- Use the negative prefix argument to delete window 0.\\
|
|
|
|
*Ex:* ~C-- C-`~ to delete window 0.
|
|
|
|
- Use the default prefix argument to delete current window.\\
|
|
|
|
*Ex:* ~C-u C-`~ to delete current window.
|
|
|
|
- If no prefix argument ig given, a number is read from minibuffer. A negative
|
|
|
|
input will delete the window instead of selecting it.
|
|
|
|
|
|
|
|
*NB:* On Spacemacs you can specify the prefix argument using ~SPC u~.
|
|
|
|
*Ex:* ~SPC u - 1 2 C-`~ to delete window 12.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
|
|
|
* Configuration
|
2016-12-12 04:20:39 -05:00
|
|
|
** Keybindings
|
2016-12-05 08:59:28 -05:00
|
|
|
To define your own bindings and override the default ones, override
|
|
|
|
=winum-keymap= before activating the mode:
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(require 'winum)
|
|
|
|
|
|
|
|
(setq winum-keymap (let ((map (make-sparse-keymap)))
|
|
|
|
(define-key map "\M-m 0" 'select-window-0)
|
2016-12-12 04:20:39 -05:00
|
|
|
; ...
|
2016-12-05 08:59:28 -05:00
|
|
|
(define-key map "\M-m 9" 'select-window-9)
|
|
|
|
map))
|
|
|
|
(winum-mode)
|
2016-11-29 21:11:05 -05:00
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
This way your bindings will not error when the mode is turned off.
|
|
|
|
|
|
|
|
** Customize options
|
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Several options are available through Emacs' Customize interface under
|
2016-12-02 19:59:13 -05:00
|
|
|
=convenience= > =winum=:
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-02 19:59:13 -05:00
|
|
|
- =winum-scope=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Frames affected by a number set. Choices are ='frame-local= ='visible= or
|
|
|
|
='global=.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Default: ='global=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-02 19:59:13 -05:00
|
|
|
- =winum-reverse-frame-list=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
If t, order frames by reverse order of creation. Has effect only when
|
|
|
|
=winum-scope= is not ='frame-local=.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Default: =nil=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-02 19:59:13 -05:00
|
|
|
- =winum-auto-assign-0-to-minibuffer=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
If non-nil, =winum-mode= assigns 0 to the minibuffer if active.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Default: =t=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-02 19:59:13 -05:00
|
|
|
- =winum-assign-func=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Function called for each window by =winum-mode=. This is called before
|
|
|
|
automatic assignment begins. The function should return a number to have it
|
|
|
|
assigned to the current-window, =nil= otherwise.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Default: =nil=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Example: always assign *Calculator* the number 9 and *NeoTree* the number 0:
|
2016-11-29 21:11:05 -05:00
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
2016-12-05 08:59:28 -05:00
|
|
|
(defun my-winum-assign-func ()
|
|
|
|
(cond
|
|
|
|
((equal (buffer-name) "*Calculator*")
|
|
|
|
9)
|
|
|
|
((string-match-p (buffer-name) ".*\\*NeoTree\\*.*")
|
|
|
|
0)
|
|
|
|
(t
|
|
|
|
nil)))
|
|
|
|
|
|
|
|
(setq winum-assign-func 'my-winum-assign-func)
|
2016-11-29 21:11:05 -05:00
|
|
|
#+END_SRC
|
|
|
|
|
2016-12-04 14:38:42 -05:00
|
|
|
- =winum-auto-setup-mode-line=
|
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
When nil, =winum-mode= will not display window numbers in the mode-line. You
|
|
|
|
might want this to be nil if you use a package that already manages window
|
|
|
|
numbers in the mode-line.
|
2016-12-04 14:38:42 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Default: =t=
|
2016-12-04 14:38:42 -05:00
|
|
|
|
2016-12-02 19:59:13 -05:00
|
|
|
- =winum-mode-line-position=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
The position in the mode-line =winum-mode= displays the number.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Default: 1
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
- =winum-ignored-buffers=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
List of buffers to ignore when selecting window.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-12 04:20:39 -05:00
|
|
|
Default: '(" *which-key*")
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
- face: =winum-face=
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Face used for the number in the mode-line.
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
** Configuration file example
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
Here is an example that you could put in your =.emacs=, which includes all
|
|
|
|
available winum options.
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(add-to-list 'load-path "/path/to/install/folder/winum.el/")
|
|
|
|
|
|
|
|
(require 'winum)
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
(defun my-winum-assign-func ()
|
|
|
|
(cond
|
|
|
|
((equal (buffer-name) "*Calculator*")
|
|
|
|
9)
|
|
|
|
((string-match-p (buffer-name) ".*\\*NeoTree\\*.*")
|
|
|
|
0)
|
|
|
|
(t
|
|
|
|
nil)))
|
|
|
|
|
|
|
|
(set-face-property 'winum-face :weight 'bold)
|
|
|
|
|
|
|
|
(setq window-numbering-scope 'global
|
|
|
|
winum-reverse-frame-list nil
|
|
|
|
winum-auto-assign-0-to-minibuffer t
|
|
|
|
winum-assign-func 'my-winum-assign-func
|
|
|
|
winum-auto-setup-mode-line t
|
|
|
|
winum-mode-line-position 1
|
|
|
|
winum-ignored-buffers '(" *which-key*")
|
|
|
|
winum-keymap (let ((map (make-sparse-keymap)))
|
|
|
|
(define-key map (kbd "C-`") 'select-window-by-number)
|
|
|
|
(define-key map (kbd "M-0") 'select-window-0-or-10)
|
|
|
|
(define-key map (kbd "M-1") 'select-window-1)
|
|
|
|
(define-key map (kbd "M-2") 'select-window-2)
|
|
|
|
(define-key map (kbd "M-3") 'select-window-3)
|
|
|
|
(define-key map (kbd "M-4") 'select-window-4)
|
|
|
|
(define-key map (kbd "M-5") 'select-window-5)
|
|
|
|
(define-key map (kbd "M-6") 'select-window-6)
|
|
|
|
(define-key map (kbd "M-7") 'select-window-7)
|
|
|
|
(define-key map (kbd "M-8") 'select-window-8)
|
|
|
|
(define-key map (kbd "M-9") 'select-window-9)
|
|
|
|
map))
|
2016-11-29 21:11:05 -05:00
|
|
|
|
2016-12-05 08:59:28 -05:00
|
|
|
(winum-mode)
|
|
|
|
#+END_SRC
|