Feature Request: Show/Hide Tabs (View Names)
I tried to go about doing this myself but it seems that showing view names at the tops of each open file is an integral part of the view rendering mechanism.
Could you look into making it so that showing tabs is optional? I'd really like this feature for "distraction free" coding.
You can make this happen by editing the data/core/rootview.lua file. You need to go to the Node:draw function (~line 362) and remove the if #self.views > 1 branch, plus make the Node:get_tab_rect (~line 231) return 0, 0, 0, 0. You technically only need to do the second thing, but removing that draw_tabs call saves a fair amount of logic and function calls.
This is how it should look:

This is ofc not very flexible nor configurable in any way, but I can implement some configuration and commands if @rxi agrees this is a nice additon.
Awesome! Thanks for the help!
No problem! If you want help with setting up some commands just lmk :)