Reputation: 633
Given the following XAML snippet, assume the caret is right before the G in Green.
<Ellipse Fill="Green"/>
Is there a Visual Studio command that deletes the existing attribute value and allows me to start typing with Intellisense support?
Ctrl+Shift+W does the trick but is very awkward.
I was hoping there was actually a command for this specific purpose that I could map to an efficient shortcut.
Upvotes: 0
Views: 53
Reputation: 6289
Edit.SelectCurrentWord
. This entry should be selected in the list box below the text box.Just a bear in mind that VS has a lot of shortcuts and most probably the shortcut that you desire is already assigned to another command. The dialog will alert you if you do and you'd have a choice whether to re-assign the shortcut or not.
Upvotes: 1