-
Notifications
You must be signed in to change notification settings - Fork 98
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
[Bug] Some lisp parentheses not highlighted properly #136
Comments
@narimiran can you show me your configuration? |
And I use https://github.com/kovisoft/slimv for Lisp. |
@luochen1990 any chance that this might get fixed? |
Update: I've managed to fix this by adding the following rule to my config for
Is there a better way than doing this one by one, and also duplicating what is in default rule for parentheses? |
Actually, VimScript provided the |
Describe the bug
Some lisp parentheses — those that have
'
or`
before the opening parenthesis — are not highlighted properly.To Reproduce
In the following example, notice
#'(lambda ...
part. Everything following it won't be highlighted.If you introduce a whitespace between
#'
and(lambda
then it is highlighted normally. (See screenshot below)Screenshots
Additional context
I've tried to manually fix it by changing the rule for parentheses to allow optional characters before
(
, but I was not able to make it work.The text was updated successfully, but these errors were encountered: