-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Highlight closing brackets #226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
a59f442 handles arithmetic evaluation, which is different from all the other cases: for every other case, the closing |
c0dafd1 handles subshells and blocks, which are easy because The As mentioned above, |
In the following constructs, the opening parenthesis/bracket/brace is highlighted as a reserved word, and the closing one isn't, but should be.
(subshell)
— done in c0dafd1a=(foo bar)
); fixed by b285c7b.(pattern)
, part of thecase
syntax — punted.{ block }
— done in c0dafd1[[ test ]]
(( arithmetic evaluation ))
— done in a59f442[ test ]
— note that this one is a builtin, unlike the others which are reserved words.The text was updated successfully, but these errors were encountered: