Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide the "left/right" and "down" arrow buttons in Sublime Text's tab bar

Tags:

sublimetext3

The tab bar (the horizontal bar which holds the tab for each open file) also contains "left" and "right" arrow buttons on the left side, and one "down" arrow at the right side of the bar. These "left/right" buttons switch between which tab is active, and the "down" button opens a dropdown list of all open tabs.

An example

How can I disable or hide only these buttons, while still showing tabs in the tab bar?

like image 585
Kamal Ahmed Choudhary Avatar asked Feb 25 '15 14:02

Kamal Ahmed Choudhary


1 Answers

In Sublime Text > Preferences > Settings - User, add the following line.

"enable_tab_scrolling": false,
like image 194
Ishan Avatar answered Oct 09 '22 13:10

Ishan