Alexander-Miller/treemacs@76807bef3c -> Alexander-Miller/treemacs@9986d6cd3d Bad-ptr/persp-mode.el@7a594a3d8f -> Bad-ptr/persp-mode.el@df95ea710e abo-abo/ace-window@0577c426a9 -> abo-abo/ace-window@77115afc1b abo-abo/hydra@9e9e00cb24 -> abo-abo/hydra@317e1de330 dgutov/diff-hl@dabb7be628 -> dgutov/diff-hl@d20f16bf5e dimitri/switch-window@8d9fe251d8 -> dimitri/switch-window@71ef2f54c9 ema2159/centaur-tabs@f4cef95acb -> ema2159/centaur-tabs@a2890d968d emacs-lsp/lsp-treemacs@2894e6dec5 -> emacs-lsp/lsp-treemacs@a48763ba5d joostkremers/writeroom-mode@eac1da790f -> joostkremers/writeroom-mode@1fd52848eb k-talo/volatile-highlights.el@9a20091f0c -> k-talo/volatile-highlights.el@513c8b73cd rolandwalker/nav-flash@2e31f32085 -> rolandwalker/nav-flash@5d4b485678 rolandwalker/unicode-fonts@47f2397ade -> rolandwalker/unicode-fonts@44d0a22420 seagle0128/doom-modeline@b66d5e5006 -> seagle0128/doom-modeline@6125309c2c tarsius/hl-todo@e52285965b -> tarsius/hl-todo@a627d33214
:ui window-select
Description unfold
This module provides several methods for selecting windows without the use of the mouse or spatial navigation (e.g. C-w {h,j,k,l}).
The command other-window
is remapped to either doom-package:switch-window or doom-package:ace-window,
depending on which backend you've enabled. It is bound to C-x o (and C-w C-w for
evil users).
It also provides numbered windows and selection with the doom-package:winum package, if desired. Evil users can jump to window N in C-w <N> (where N is a number between 0 and 9). Non evil users have C-x w <N> instead.
Maintainers
This module has no dedicated maintainers. Become a maintainer?
Module flags
- +numbers
- Enable numbered windows and window selection (using doom-package:winum).
- +switch-window
- Use the doom-package:switch-window package as the backend, instead of ace-window (doom-package:avy).
Packages
Hacks
No hacks documented for this module.
TODO Changelog
This module does not have a changelog yet.
Installation
Enable this module in your doom!
block.
This module has no external requirements.
TODO Usage
🔨 This module has no usage documentation yet. Write some?
TODO Configuration
🔨 This module's configuration documentation is incomplete. Complete it?
This module provides two backends, both providing the same functionality, but with different visual cues. They are doom-package:ace-window and doom-package:switch-window.
ace-window
The first character of the buffers changes to a highlighted, user-selectable character.
- Pros: the content of the buffers are always visible.
- Cons: The display characters are small and difficult to see (see below for a way to enlarge them).
Custom font-face example
This changes the ace-window display to show a white letter with a red background. The box attribute adds some padding:
(custom-set-faces!
'(aw-leading-char-face
:foreground "white" :background "red"
:weight bold :height 2.5 :box (:line-width 10 :color "red")))
switch-window
Replaces the entire buffer with large letters.
- Pros: The displayed characters are really easy to see.
- Cons: You can't see the contents of the buffers.
Troubleshooting
There are no known problems with this module. Report one?
Frequently asked questions
This module has no FAQs yet. Ask one?
TODO Appendix
🔨 This module has no appendix yet. Write one?