vote up 2 vote down star
1

I realize that I may be being a bit lazy, but does anyone know of a Visual Studio macro, where I can select some text inside of the Visual Studio IDE, click a button, and have it wrap the selected text with tags? It would generate something like:

<strong>My Selected Text</strong>

I would even be up for creating a macro, just not sure where to exactly start!

flag

2 Answers

vote up 5 vote down check

The code to do so is rather simple:

Sub SurroundWithStrongTag()
    DTE.ActiveDocument.Selection.Text = "<strong>" + DTE.ActiveDocument.Selection.Text + "</strong>"
End Sub

Now, if you don't know much about macros here's how to add it:

  • First you need open the macros IDE, click Tools->Macros->Macros IDE...
  • Next, we will add a module for your custom macros. Right click on "MyMacros" in the Project Explorer, click Add->Add Module..., type in an appropriate name then click "Add".
  • Now paste the function inside the module, making copies for any other tags you want
  • Save and close the macros IDE

To hook the macro up to a button:

  • Click Tools->Customize...
  • Click New..., type in an appropriate name, click OK. An empty toolbar should be visible (you may have to move the window to see it)
  • Click the Commands tab, and select "Macros" in categories
  • Find the macros created before and drag them over to the toolbar
  • Right click the buttons to change settings (such as displaying an icon instead of text)
link|flag
Thanks! You saved me a bunch of time! – mattruma Feb 28 '09 at 19:46
Can you actually present a prompt for which tag to surround the text with? – Sam Jul 27 at 14:31
3  
I just tried this and if I select text and run the marco, I end up with two </strong> tags at the end. I think this is because VS.NET does a little autocomplete of tags. So, from the code, I just took out the + "</strong>" from the end and it works great. Anyone know how to turn off that autocomplete functionality in the macro, and then reenable? – slolife Aug 5 at 18:43
vote up 0 vote down

Dim HTMLprops As Properties = DTE.Properties("Texteditor", "HTML Specific")

Dim aProp As EnvDTE.Property = HTMLprops.Item("AutoInsertCloseTag")

aProp.Value = False

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.