Reputation: 1786
for example if i write a text:
(
then i get auto ()
,
next example:
"
then i get auto complete by vs: ""
how could i disable this function in visual studio 2013?
i would stay only with ("an exception") for {
i know now that i can disable it with:
Tools -> options -> text editor -> general and the option: automatic brace completion
but now i would add extension for {
, that it can be complete in vs for result {}
Upvotes: 1
Views: 937
Reputation: 3475
Tools > Options > Text Editor > C# > General
Uncheck Automatic brace completion
I've tested this on Visual Studio 2013.
This will turn off all auto-completions. There doesn't seem to be an option to add an exception.
Upvotes: 1