Visual Studio syntax highlighting

Can I get the same syntax highlighting level in Visual Studio 2008 as SQL Server Management Studio? This applies to T-SQL.

For example, SSMS has separate highlighting options for operands, system functions, etc., while for Visual Studio 2008 there is only one keyword for T-SQL.

+3
source share
3 answers

See the following: related question

To get a higher level of control, you will need to write addin and a parser, both of which are very complex.

VS 2010 will have MEF and WPF, which means that writing labels that change visual effects will be much easier.

VS 2008, DXCore.

+1

, , , - , VS , SQL Server Management Studio. .

+1

I am using SQL 2008 and VS 2008 DB Pro edition. And what I often do is write SQL in SSMS and copy and paste in VS.

0
source

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


All Articles