我意识到我可能有点懒,但有人知道Visual Studio宏,我可以在Visual Studio IDE中选择一些文本,单击一个按钮,然后用标签包装所选文本?它会产生类似的东西:
<strong>My Selected Text</strong>
我甚至会创建一个宏,只是不知道从哪里开始!
答案 0 :(得分:13)
这样做的代码很简单:
Sub SurroundWithStrongTag()
DTE.ActiveDocument.Selection.Text = "<strong>" + DTE.ActiveDocument.Selection.Text + "</strong>"
End Sub
现在,如果您对宏的了解不多,请点击此处:
将宏挂钩到按钮:
答案 1 :(得分:2)
我知道这是一个古老的话题,但也许有人觉得这很有用。
我有以下设置:
Sub WrapInH1()
WrapInTag("h1")
End Sub
Sub WrapInP()
WrapInTag("p")
End Sub
Sub WrapInStrong()
WrapInTag("strong")
End Sub
Sub WrapInTag()
WrapInTag("")
End Sub
Sub WrapInTag(ByVal tagText As String)
EnableAutoComplete(False)
If tagText.Length = 0 Then
tagText = InputBox("Enter Tag")
End If
Dim text As String
text = DTE.ActiveDocument.Selection.Text
text = Regex.Replace(text, vbCrLf & "$", "") 'Remove the vbCrLf at the end of the line, for when you select the line by clicking in the margin, otherwise your closing tag ends up on it's own line at the end...
DTE.ActiveDocument.Selection.Text = "<" & tagText & ">" & text & "</" & tagText & ">" & vbCrLf
EnableAutoComplete(True)
End Sub
Private Sub EnableAutoComplete(ByVal enabled As Boolean)
Dim HTMLprops As Properties
Dim aProp As EnvDTE.Property
HTMLprops = DTE.Properties("Texteditor", "HTML Specific")
aProp = HTMLprops.Item("AutoInsertCloseTag")
aProp.Value = enabled
End Sub
答案 2 :(得分:1)
Dim HTMLprops As Properties = DTE.Properties("Texteditor", "HTML Specific")
Dim aProp As EnvDTE.Property = HTMLprops.Item("AutoInsertCloseTag")
aProp.Value = False
答案 3 :(得分:1)
如果您想要一个开箱即用的解决方案,Visual Studio 2015附带一个新的快捷方式,Shift + Alt + W用div包装当前选择。此快捷方式使文本“div”处于选中状态,使其可以无缝更改为任何所需的标记。这与自动结束标签更换相结合,可以快速解决问题。
Shift+Alt+W > strong > Enter