Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable auto-insert of double quotes in html in Visual Studio 2013

Is it possible to do this? I can't find anything in the Options that disables this.

For example, if I type

<table cellpadding=

it automatically inserts "" and positions the cursor between the two quotes. This is not what I prefer to do. I prefer to type without quotes, and then select the text and format it -- it is much quicker. In previous versions of Visual Studio, it did the auto-insert by default, but I was able to disable it. I can't find a way to do it in Visual Studio 2013. Disabling "brace completion" does not work. It's driving me nuts!

like image 437
Cynthia Avatar asked Apr 16 '15 21:04

Cynthia


1 Answers

Tools -> Options -> Text Editor -> HTML

  • General -> Automatic brace completion
  • Advanced -> Insert attribute value quotes

or/and in HTML (Web Forms)

  • Formatting -> Insert attribute value quotes when typing
like image 126
sac1 Avatar answered Nov 30 '22 22:11

sac1