Glam Prestige Journal

Bright entertainment trends with youth appeal.

I used the Hide tabs option from the View < Hide Tabs , in my Sublime Text 3 editor.

In windows by pressing the alt key the tabs used to show up again.

But alt is not working in Ubuntu. What should I press to make my tabs visible again?

1 Answer

This question on Stack Overflow should answer your question. To summarize,

  1. Go to Preferences → Key Bindings
  2. In the User keymap file, add a key combination for toggling between the visibility of tabs, as

    { "keys": ["<some key combination>"], "command": "toggle_tabs" }

Further details, including identifiers for keys, can be found in the Sublime Text 3 documentation.

If you don't necessarily require a key combination, you can simply use View → Show Tabs to make them visible again.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy