Questions tagged [tabbar]

Tabbar is a minor mode that displays a tab bar at the top, similar to the idea of web browser’s tabs.

Tabbar is available from the MELPA repository. There is some documentation on the Emacs Wiki, and also in the source file itself: use M-x find-library tabbar.el from Emacs (after you have installed it!).

41 questions
25
votes
5 answers

Browser-style 'tabs' for emacs?

I would like tabs like firefox but for emacs. I found this: http://emacswiki.org/emacs/TabBarMode But it just add to each buffer (window in Emacs terminology) a bar that shows currently open buffers. I would like a tab to be able to hold multiple…
Leo Ufimtsev
  • 4,558
  • 3
  • 23
  • 46
5
votes
5 answers

What is the right way to install tab bar?

I want to install tab bar to see buffer names at the top and jump between them with Ctrl-Up/Down. Yes, I know that some people doesn't recommend it for emacs, but I don't agree with them - I do like ido but I like tabs too. Anyway, when I open most…
5
votes
1 answer

Using tab-bar.el with automatic tab management

I want to implement automatic tab management. Every file I open needs to go into a tab. The tab into which any given buffer goes is determined by root directory of the VC repo the file belongs to. The mechanism used by tabbar.el was…
alephnull
  • 95
  • 4
3
votes
2 answers

open emacs with certain number of tabs open by default

Is there a way to have emacs open up, say, 3 tabs, upon start up ? I am tired of all the time having to open them manually and then split window also. I would like to automate this via setting in my init.el file. Maybe someone can help?
CD86
  • 563
  • 2
  • 11
1
vote
0 answers

how to modify command to open buffer in new tab instead of new window

Emacs-27.1 ships with a new tab-bar-mode minor mode. This puts a tab bar at the top of each Emacs frame. Each tab in the tab bar can display multiple windows. Emacs (and various packages) has many commands that open a buffer in a new window in the…
illabout
  • 285
  • 2
  • 14
1
vote
0 answers

tabbar: optimizing sorting of tabs in alphabetical order

I alphabetize my tabs when using the tabbar.el library https://marmalade-repo.org/packages/tabbar. As you may already know, sorting is costly. I have a feeling that this sorting is even more costly when I have several frames open and buffers…
lawlist
  • 19,106
  • 5
  • 38
  • 120
0
votes
1 answer

how to make the tabs from tab-bar-mode always stay on the same line?

I don't know if there is a better title, but this is the one that's most verbose (a less verbose one would have been "how to make the tabs overflow to the left side" or something along those lines) This is related to another question I asked, here.…
Nordine Lotfi
  • 357
  • 2
  • 13
0
votes
1 answer

How to prevent tabs from shrinking when using many tabs with tab-bar-mode?

I'm using tab-bar-mode in Emacs and noticed that, if there are a lot of tabs, then each tab shrink to accommodate the newer tabs. What I want to do instead is for the tabs to remain on a fixed width/size, and then show newer tabs on the right side…
Nordine Lotfi
  • 357
  • 2
  • 13
0
votes
2 answers

Bug or feature? Window Tab Line disappears when *xxx* buffers (*scratch*, etc.) are viewed in window

Context: GNU Emacs 29.0.60 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo version 1.16.0, Xaw3d scroll bars) of 2023-03-30, Development version 4508a024e818 on emacs-29 branch; build date 2023-03-30. Linux Mint 21 (Vanessa) Cinnamon. After…
Claudio
  • 450
  • 3
  • 12
0
votes
1 answer

Bug or feature? Click on Tab does not give the buffer with the shown buffer name

Below two screenshots. The first one before the click on a tab: The second one after the click on the tab: As you can see above the click on the tab does not give the buffer with the name shown in the tab. The core of the issue is that Emacs…
Claudio
  • 450
  • 3
  • 12
0
votes
1 answer

emacs tabbar -- how to get tabs for all buffers displayed in one go, regardless of extension?

I use, and love, tabs, using the following in my .emacs: (require 'tabbar) (tabbar-mode 1) (global-set-key [(control shift iso-lefttab)] 'tabbar-backward-tab) (global-set-key [(control tab)] 'tabbar-forward-tab) Since upgrading my distro a few…
ionh
  • 13
  • 4
0
votes
1 answer

Exclude/Separate diary and Packages buffer from tabbar group

I admit it, I use tabbar. It is a bit quirky but it works for me. There is just one thing I really tried very hard to solve but it was not possible. I think mainly because a lot of people don't use tabbar so there is not so much information out…
Jens Lange
  • 463
  • 2
  • 13