在Visual Studio中,我可以使用Control+]
快捷方式跳转到/打开/关闭大括号。
是否有快捷方式允许我一次删除两个大括号(可能是宏/扩展名)?
e.g。
foo = ( 1 + bar() + 2 );
当我在第一个开口支架上时,我想删除它及其匹配的支架以获得
foo = 1 + bar() + 2;
答案 0 :(得分:4)
使用Visual Studio没有固有的方法。您需要为此实现宏。
如果选择宏路由,则需要熟悉Edit.GoToBrace
命令。这是将您从当前跳转到匹配括号的命令。请注意,它实际上会在匹配的括号后转储您,因此您可能需要向后查找一个字符以找到要删除的元素。
将此实现为宏的最佳方法是
Edit.GoToBrace
答案 1 :(得分:3)
它并不像JaredPar建议的那么简单,但我也不是宏专家。
适用于(),{}和[]
Sub DeleteMatchingBrace()
Dim sel As TextSelection = DTE.ActiveDocument.Selection
Dim ap As VirtualPoint = sel.ActivePoint
If (sel.Text() <> "") Then Exit Sub
' reposition
DTE.ExecuteCommand("Edit.GoToBrace") : DTE.ExecuteCommand("Edit.GoToBrace")
If (ap.DisplayColumn <= ap.LineLength) Then sel.CharRight(True)
Dim c As String = sel.Text
Dim isRight As Boolean = False
If (c <> "(" And c <> "[" And c <> "{") Then
sel.CharLeft(True, 1 + IIf(c = "", 0, 1))
c = sel.Text
sel.CharRight()
If (c <> ")" And c <> "]" And c <> "}") Then Exit Sub
isRight = True
End If
Dim line = ap.Line
Dim pos = ap.DisplayColumn
DTE.ExecuteCommand("Edit.GoToBrace")
If (isRight) Then sel.CharRight(True) Else sel.CharLeft(True)
sel.Text = ""
If (isRight And line = ap.Line) Then pos = pos - 1
sel.MoveToDisplayColumn(line, pos)
sel.CharLeft(True)
sel.Text = ""
End Sub
答案 2 :(得分:2)
创建一个宏按Ctrl +]两次然后退格,然后按Ctrl +减号和删除。 Ctrl +减号将光标移回时间。