How to remove tab close buttons in VS2013?

It looks like you can remove the tab close buttons in Visual Studio 2013 as part of the Power Tools 2013 Performance extension, but it does make a ton of more material and it seems like outsmarting bigtime to get rid of those annoying tab buttons. Does anyone know a good easy way to do this?

+6
source share
1 answer

There is no easy way to do this. This parameter sets the following values ​​in the registry:

[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0\DialogPage\Microsoft.CustomDocWell.Options] "HideButtonInTabs"="False" [HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0\DialogPage\Microsoft.PowerCommands.OptionPages.CommandsPage] "DisabledCommands"="" 

but they are not used by Visual Studio, but only by extension. So the only way is to write your own VS extension that only does this.

+2
source

Source: https://habr.com/ru/post/974689/


All Articles