diff options
-rw-r--r-- | Source/SPBundleCommandTextView.m | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/SPBundleCommandTextView.m b/Source/SPBundleCommandTextView.m index 2f9066b6..76020392 100644 --- a/Source/SPBundleCommandTextView.m +++ b/Source/SPBundleCommandTextView.m @@ -427,6 +427,16 @@ break; case '{': matchingCharacter = '}'; + break; + case '[': + matchingCharacter = ']'; + break; + case '“': + matchingCharacter = '”'; + break; + case '‘': + matchingCharacter = '’'; + break; default: return NO; } |