Tabbed windows on Emacs

后端 未结 3 562
花落未央
花落未央 2021-01-30 14:01

I\'m trying to get multiple tabs in windows like vim does it. In vim tabs aren\'t tied to buffers and you can have multiple tabs each with multiple splits and buffers in them. W

3条回答
  •  生来不讨喜
    2021-01-30 14:28

    tabbar is by far the most popular package I think, but only shows tabs for buffers with the same mode you're editing (for instance, if you're working in a file in python-mode, it'll show tabs for all python-mode buffers only). That's the default behavior anyway; I'm pretty sure you could customize that if you wanted to. But my impression is that a popular way to manage multiple buffers in Emacs is with ibuffer and ido-mode. For instance, my .emacs customizations include

    (require 'ido)
    (ido-mode t)
    (global-set-key "\C-x\C-b" 'ibuffer)
    

提交回复
热议问题