You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Brett Langdon 9bd83c57a3 Squashed 'emacs.d/' changes from c2774bc0d..8e1af1454 9 years ago
..
README.org Squashed 'emacs.d/' changes from c2774bc0d..8e1af1454 9 years ago
config.el Squashed 'emacs.d/' changes from c2774bc0d..8e1af1454 9 years ago
funcs.el Squashed 'emacs.d/' changes from c2774bc0d..8e1af1454 9 years ago
packages.el Squashed 'emacs.d/' changes from c2774bc0d..8e1af1454 9 years ago

README.org

IBuffer layer

Description

This layer configures Emacs IBuffer for Spacemacs.

Install

Layer

To use this configuration layer, add it to your ~/.spacemacs. You will need to add ibuffer to the existing dotspacemacs-configuration-layers list in this file.

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:

  (setq-default dotspacemacs-configuration-layers '(
    (ibuffer :variables ibuffer-group-buffers-by 'projects)))

Key bindings

Global

Key Binding Description
SPC b B open IBuffer menu (global)

Note: The layer will also replace regular C-x C-b with ibuffer.

IBuffer

Key Binding Description
g r update IBuffer ("refresh")
g j move to next filter group
g k move to previous filter group