.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
Post a Comment