emacs list-buffers behavior

前端 未结 9 1248
情话喂你
情话喂你 2021-02-01 12:39

In GNU emacs, every time I hit Ctrl-x Ctrl-b to see all of my buffers, the window is split to show the buffer list, or if I have my window already split in 2 (for ins

9条回答
  •  生来不讨喜
    2021-02-01 13:27

    Strangely, there isn't an answer here about ibuffer.

    I would recommend this as a standard change for the majority of Emacs users:

    (global-set-key (kbd "C-x C-b") 'ibuffer)
    

    ibuffer is a very advanced replacement for the default buffer listing, and not only features the exact behaviour requested, but provides a wealth of other functionality.

    I listed a few ibuffer filtering and grouping basics in Emacs: help me understand file/buffer management, but be sure to read the documentation for details.

提交回复
热议问题