emacs list-buffers behavior

前端 未结 9 1254
情话喂你
情话喂你 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:24

    I highly recommend bs.el from http://www.geekware.de/software/emacs/ Install it and:

    (require 'bs)
    (add-hook 'bs-mode-hook 'turn-on-font-lock)
    (global-set-key "\C-x\C-b" 'bs-show)
    

    It manages buffers and window configuration in the right way, so everything requires minimum number of keystrokes.

提交回复
热议问题