This commit is contained in:
Sean Yeh 2014-12-22 16:26:16 -06:00
parent 7d2c590cc9
commit c95177247a
1 changed files with 3 additions and 1 deletions

View File

@ -677,7 +677,7 @@ Function ProcessInnerKey(oTextCursor, movementModifier, keyChar, bExpand)
End If
Select Case keyChar
Case "(", ")", "{", "}", "[", "]", "t", "'", """":
Case "(", ")", "{", "}", "[", "]", "<", ">", "t", "'", """":
Select Case keyChar
Case "(", ")":
search1 = "(" : search2 = ")"
@ -685,6 +685,8 @@ Function ProcessInnerKey(oTextCursor, movementModifier, keyChar, bExpand)
search1 = "{" : search2 = "}"
Case "[", "]":
search1 = "[" : search2 = "}"
Case "<", ">":
search1 = "<" : search2 = ">"
Case "t":
search1 = ">" : search2 = "<"
Case "'":