-
I'm looking for a tab-less browsing experience. Can tabs be disabled completely, please? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Depending on how hard you want to disable them, you can. Allow me to explain. There is no hard switch or single setting to disable tabs completely. However, you could start with hiding the tabbar, using |
Beta Was this translation helpful? Give feedback.
-
That is so awesome thank you so much. |
Beta Was this translation helpful? Give feedback.
Depending on how hard you want to disable them, you can. Allow me to explain. There is no hard switch or single setting to disable tabs completely. However, you could start with hiding the tabbar, using
:set guitabbar=never
. This will not change how tabs work, but hide them from the UI completely. Secondly, you can change every single mapping in Vieb with it's mapping system, see:h mappings
for details, but as an example, you can remove the newtab mapping with:nunmap t
. You could also map these keys to different actions now that they are available, but that's up to you. Last but not least, you can control which container new tabs should open withcontainernewtab
, which also has the opti…