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!).

38 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,488
  • 3
  • 22
  • 45
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…
4
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
  • 75
  • 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
  • 543
  • 2
  • 9
3
votes
1 answer

How to include name of current tab and its buffer in the frame title?

I would like the title my frames to show ": ". Presently, frame-title-format has its default value of %b, which shows only the name of the buffer in the selected window. There does not appear to be a…
midas0441
  • 304
  • 1
  • 7
3
votes
1 answer

make `display-buffer` open buffer in new tab

The display-buffer function seems to be used quite heavily within Emacs. It has a lot of options to determine where to open a new buffer (a new window, a new frame, an existing window, etc). Emacs introduced a concept of tabs in 27.1. However,…
illabout
  • 285
  • 2
  • 14
3
votes
1 answer

Is it possible to sort dired tabs in tab bar-mode by directory structure?

I am using tabbar-mode and I love it. I have only one thing which is irritating me: the sorting order of tabs of fired windows. As in other modes, they seem to be sorted by time opened. But in case of the dired buffers, I would prefer a sorting…
Rainer
  • 897
  • 10
  • 16
2
votes
1 answer

What is this gap, and how do I remove it?

I'm changing the appearance of the tab-bar, and I have the following: There's a gap present between tabs and between the left edge of the frame, despite setting the face attribute :box to nil on tab-bar-tab and tab-bar. What is this gap, what face…
user30731
2
votes
2 answers

open multiple files in tabs from command line

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. Is there any way to invoke Emacs from the command line and have it open multiple files in…
illabout
  • 285
  • 2
  • 14
2
votes
1 answer

Disable tabbar in special buffers

I have Tabbar installed and when I am using some function like describe-key in emacs the resulting *help* buffer has a tab bar at the top. This is a waste of space and is distracting. How can I disable the tab bar in popup buffers or just special…
Prgrm.celeritas
  • 849
  • 6
  • 15
2
votes
1 answer

How to overwrite defconst/defcustom value in init file, tabbar arrow button image for example

I was trying to change defconst value for a tabbar image, the following lines are defined in tabbar.el: (defconst tabbar-scroll-left-button-enabled-image '((:type pbm :data "\ P2 13 13 255 255 255 255 255 255 255 255 255 255 255 255 255 255…
cdnszip
  • 347
  • 1
  • 7
2
votes
0 answers

tabbar-local-mode vs semantic-stickyfunc-mode

When semantic-stickyfunc-mode is activated, the tabbar tabs are not visible. I would like to write a function that show the tabs 2 seconds and then goes to semantic-stickyfunc-mode. I tried with this: (defun timer-local-tabbar-show() …
djangoliv
  • 3,169
  • 16
  • 31
1
vote
0 answers

Is there a way to save layouts for Tab Bar Mode?

I have multiple tab workspaces open. And it would be a shame if I had to open and organise them like this every time I start emacs or restart my computer. Is there a way to save layouts?
Vinn
  • 263
  • 2
  • 7
1
vote
3 answers

How to move the time and date displayed in the tab-bar a couple of character to the left

I would like to move the time and date displayed in the tab-bar a couple of characters to the left, so that the time is not completely on the edge of the screen. Here is the relevant code : (setq tab-bar-format '(tab-bar-format-history …
Emperor_Udan
  • 121
  • 4
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
2 3