buffer-expose
- Description
- Visual buffer switching using a window grid
- Latest
- buffer-expose-0.4.3.tar (.sig), 2024-Mar-31, 450 KiB
- Maintainer
- Clemens Radermacher <clemera@posteo.net>
- Atom feed
- buffer-expose.xml
- Website
- https://github.com/clemera/buffer-expose
- Browse ELPA's repository
- CGit or Gitweb
- Badge
To install this package from Emacs, use package-install
or list-packages
.
Full description
<a href="https://elpa.gnu.org/packages/buffer-expose.html"><img alt="GNU ELPA" src="></a>
1. Description
Visual buffer switching using a window grid (ace-window key hints are optional):
2. Installation
For manual installation, clone the repository and call:
(package-install-file "/path/to/buffer-expose.el")
3. Config
To use the default bindings for switching buffers with buffer-expose use buffer-expose-mode:
(buffer-expose-mode 1)
The default bindings are defined in buffer-expose-mode-map:
(defvar buffer-expose-mode-map (let ((map (make-sparse-keymap))) (define-key map (kbd "<s-tab>") 'buffer-expose) (define-key map (kbd "<C-tab>") 'buffer-expose-no-stars) (define-key map (kbd "C-c <C-tab>") 'buffer-expose-current-mode) (define-key map (kbd "C-c C-m") 'buffer-expose-major-mode) (define-key map (kbd "C-c C-d") 'buffer-expose-dired-buffers) (define-key map (kbd "C-c C-*") 'buffer-expose-stars) map) "Mode map for command `buffer-expose-mode'.")
There are user options to customize which buffers are shown and you can easily write your own command, like this:
(defun my-expose-command (&optional max) (interactive "P") (buffer-expose-show-buffers <your-buffer-list> max [<hide-regexes> <filter-func>]))
Old versions
buffer-expose-0.4.2.el.lz | 2019-Apr-23 | 7.99 KiB |
buffer-expose-0.4.1.el.lz | 2019-Mar-24 | 7.96 KiB |
buffer-expose-0.4.el.lz | 2019-Mar-04 | 7.75 KiB |
buffer-expose-0.3.el.lz | 2019-Feb-28 | 7.50 KiB |
buffer-expose-0.2.el.lz | 2019-Feb-26 | 7.50 KiB |
buffer-expose-0.1.el.lz | 2019-Feb-25 | 7.50 KiB |