Tabs Studio Blog (organizing Visual Studio document tabs)

June 12, 2023

Tabs Studio for Visual Studio 2022 Arm64

Filed under: Releases — Tags: — Sergey Vlasov @ 7:47 pm

You can install Tabs Studio v5.3.0 on Visual Studio 2022 Arm64 with this installer: https://tabsstudio.com/download/TabsStudioVS2022_ARM64_530.vsix

March 9, 2023

Tabs Studio v5.3.0 released

Filed under: Releases — Tags: — Sergey Vlasov @ 11:52 am

Tabs Studio v5.3.0 released:

  • Added support for SQL Server Management Studio 19.
  • Added Selector add-in, that highlights tabs for the selected project, to the installer.

Download link: Tabs Studio v5.3.0.

February 24, 2023

Tabs Studio v5.2.0 released

Filed under: Releases — Tags: , , — Sergey Vlasov @ 2:06 pm

Tabs Studio v5.2.0 released:

  • Improved solution loading performance.
  • Extended the default Comment regex in SQLComment to cover more cases.
  • Removed VS command “Show Tabs in Multiple Rows” from the tab context menu” in VS 2022.
  • Fixed a hang on loading a solution with a Xamarin Forms project in VS 2022.
  • Fixed a rare NullReferenceException in OrderKeeper.
  • Fixed a license key verification crash when AES CPU instructions are not available.
  • Fixed a comment not showing on opening a stored procedure with SQLComment.

Download link: Tabs Studio v5.2.0.

March 15, 2022

Highlighting tabs for the selected project

Filed under: Uncategorized — Tags: , — Sergey Vlasov @ 11:11 pm

I’ve created the new Selector add-in that dynamically highlights tabs belonging to the same project as the selected tab.

For example, when the selected tab is from the BlazorApp1 project:

And when the selected tab is from the WpfApp1 project:

A sample tabs style setting transparent red background color for selected project tabs excluding the selected tab:

<Style TargetType="TabsStudio:Tab" BasedOn="{StaticResource DefaultTabStyle}">
    <Style.Triggers>
          <MultiDataTrigger>
            <MultiDataTrigger.Conditions>
              <Condition Binding="{Binding Path=(TabsStudioSelector:Properties.IsSelectedProject), RelativeSource={RelativeSource Self}}" Value="True" />
              <Condition Binding="{Binding Path=IsTabSelected, RelativeSource={RelativeSource Self}}" Value="False"/>
            </MultiDataTrigger.Conditions>
            <Setter Property="Background" Value="#50FF0000" />
          </MultiDataTrigger>
    </Style.Triggers>
</Style>

Download link: Selector v1.0.0.

November 24, 2021

Tabs Studio v5.1.2 released

Filed under: Releases — Tags: — Sergey Vlasov @ 4:59 pm

Tabs Studio v5.1.2 released:

  • Added the “Disable drag tab to float” option.
  • Changed selected tab border color in Visual Studio 2022 dark mode.

Download link: Tabs Studio v5.1.2.

November 20, 2021

Tabs Studio v5.1.1 released

Filed under: Releases — Sergey Vlasov @ 4:52 pm

Tabs Studio v5.1.1 released: Removed Set Tab Color context submenu from VS 2022 Preview.

Download link: Tabs Studio v5.1.1.

November 18, 2021

Tabs Studio v5.1.0 released

Filed under: Releases — Tags: , — Sergey Vlasov @ 9:28 pm

Tabs Studio v5.1.0 released:

  • Added the short tabs display option.
  • Changed selected tab background color in Visual Studio 2022 dark mode.

Download link: Tabs Studio v5.1.0.

November 11, 2021

Short tabs

Filed under: Uncategorized — Tags: , — Sergey Vlasov @ 12:26 pm

In Tabs Studio, tabs expand to fill available row space (unless it is the last row of tabs). This is how it looks in VS 2022:

I’ve added the new ShortTabs property that prevents tab expansion:

You can enable it with the following style:

<Style TargetType="TabsStudio:Tabs" BasedOn="{StaticResource DefaultTabsStyle}">

  <Setter Property="ShortTabs" Value="True"/>

</Style>

Download link: Tabs Studio v5.0.2.

July 30, 2021

Tabs Studio v5.0.0.1 released

Filed under: Releases — Tags: — Sergey Vlasov @ 11:50 am

Tabs Studio v5.0.0.1 fixes EnvDTE FileNotFoundException in Visual Studio 2022 Preview 2.1.

Download link: Tabs Studio v5.0.0.1.

July 1, 2021

Tabs Studio v5.0.0 released

Filed under: Uncategorized — Tags: — Sergey Vlasov @ 10:48 am

Tabs Studio v5.0.0 released:

  • Added support for Visual Studio 2022 Preview 1.1.
  • Moved support for Visual Studio 2015/2013/2012/2010 and SSMS 17/2016/2014/2012 to a separate installer TabsStudio2015.
  • Improved installer’s ability to handle blocking processes.
  • Added the “Rename regex” option to the ITransform add-in.
  • Extended the Disambiguator add-in to compare full document paths when one level of disambiguation is not enough.
  • Fixed unpredictable ordering in the OrderEx add-in when there is more than 2 extensions in a group.
  • Fixed a rare TabsStudio.Tabs should not return PositiveInfinity exception.
  • Fixed a rare ArgumentException in WindowBase.get_Caption.

Tabs Studio in Visual Studio 2022

Tabs Studio in Visual Studio 2022

Download link: Tabs Studio v5.0.0.

Older Posts »

Blog at WordPress.com.