I find that the default VS 2013 switch snippet works a lot better than the one from resharper. any way to just disabe that?
Asked
Active
Viewed 1,230 times
1 Answers
12
I see a couple of ways to get this:
With ReSharper IntelliSense
Uncheck 'switch' here: ReSharper | Templates Explorer | Live Templates | C#;
Type 'switch' in code editor;
Hit 'Esc' to hide IntelliSense popup;
Hit 'Tab' to insert VS "switch" code snippet.
With VS IntelliSense
Uncheck 'switch' here: ReSharper | Templates Explorer | Live Templates | C#
Select 'Visual Studio' here: ReSharper | Options | Environment | IntelliSense | General;
Apply this to enable VS IntelliSense;
Type 'switch' in code editor;
Hit 'Tab' twice to insert VS "switch" code snippet.

Alexander Kurakin
- 13,373
- 2
- 33
- 29
-
1For info it's ReSharper | Tools | Templates Explorer | Live Templates | C# in ReSharper 10 – tomRedox Jan 13 '16 at 10:44