.net - How do I keep the XAML editor in Visual Studio (2015) from inserting useless extra quotes after attribute values? -


if type attribute:

width="40" 

then enter first quote, vs helpfully adds second. if want add attribute, naturally do? type second quote! get:

width="40"" 

this in contrast c# editor's handling of parentheses; close parens type overwrite autogenerated ones. of course can press right arrow key or end key, feels unnatural...

how can disable "feature" without turning off intellisense in xaml editor? there extension fixes this? think c# editor same thing quotes, too, notice more xaml reason...

tools -> options -> xaml -> miscellaneous -> auto insert -> attribute quotes


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

android - Keyboard hides my half of edit-text and button below it even in scroll view -