c893383fe4
- CSS links - GIFS in published version - Unify layer doc titles - Change emoji layer emojis to an image
49 lines
1.3 KiB
Org Mode
49 lines
1.3 KiB
Org Mode
#+TITLE: IBuffer layer
|
|
#+HTML_HEAD_EXTRA: <link rel="stylesheet" type="text/css" href="../../css/readtheorg.css" />
|
|
|
|
* Table of Contents :TOC_4_org:noexport:
|
|
- [[Description][Description]]
|
|
- [[Install][Install]]
|
|
- [[Layer][Layer]]
|
|
- [[Grouping buffers][Grouping buffers]]
|
|
- [[Key bindings][Key bindings]]
|
|
|
|
* Description
|
|
|
|
This layer configures Emacs ibuffer for Spacemacs.
|
|
|
|
* Install
|
|
|
|
** Layer
|
|
|
|
To use this contribution add it to your =~/.spacemacs=
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
(setq-default dotspacemacs-configuration-layers '(ibuffer))
|
|
#+END_SRC
|
|
|
|
** Grouping buffers
|
|
|
|
Buffers can be grouped by major-modes or projectile projects.
|
|
By default buffers are grouped by major-modes.
|
|
|
|
To change how buffers are grouped set the layer variable
|
|
=ibuffer-group-buffers-by= to one of the following supported values:
|
|
- =modes= to group buffers by major-modes (default)
|
|
- =projects= to group buffers by projectile projects
|
|
- =nil= to not group buffers
|
|
|
|
Example:
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
(setq-default dotspacemacs-configuration-layers '(
|
|
(ibuffer :variables ibuffer-group-buffers-by 'projects)))
|
|
#+END_SRC
|
|
|
|
* Key bindings
|
|
|
|
| Key Binding | Description |
|
|
|-------------+-------------------|
|
|
| ~SPC b B~ | open ibuffer menu |
|
|
|
|
*Note:* The layer will also replace regular ~C-x C-b~ by ibuffer.
|