-
-
Notifications
You must be signed in to change notification settings - Fork 247
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
[Fix #377] Fix font locking for def forms #630
[Fix #377] Fix font locking for def forms #630
Conversation
Personally I feel that there are a lot of Therefore I'd suggest an alternative approach: default to the current approach, but blacklist a few words from the English dictionary: wdyt? Cheers - V |
I actually prefer the proposed solution, but that's not a surprise as I think I had something similar in mind. I'll accept the PR when the CI is green. We'll also have to document in the README how people can add new |
Is this something that CIDER already enhaces anyway? (or that it could, after this PR) |
It does, that's one more reason why I prefer the approach suggested in this PR. :-) It will pick up all definitions, macros, etc. (you can turn this off if you don't care about it) That's why it's better to have less assumptions in |
I thought that I'll have at least a week to fix everything before you guys notice PR, but it's like you were waiting for it :D Also, I think the problem with CI is because of the added variable. Regexp is evaluated at compile time, so it probably can't use a dynamic variable. I have no idea how to fix this at the moment. I'll surely make a research, but if you could give a direction, it would be really appreciated |
Hmm, I thought that
That's how we roll! 😉 |
Managed to fix it by wrapping Lines 826 to 827 in 0af29f4
But I guess compiling this regexp is necessary |
So I just excluded regexp responsible for def forms from |
70421b6
to
e548d79
Compare
Looking at the Emacs docs it seems that |
From the docs:
It seems it's kinda like If this list is evaluated frequently, maybe it's better to leave at least part of it evaluated during compilation |
So, should I leave it like this, remove |
I'm wondering about this myself. It'd be simplest to just add the defs to the big form, but that would make them harder to customize. Another simple solution would to have two
I'm leaning towards just inlining all the known forms in the existing regexp and adding some snippet in the README about how people can add more themselves. |
e548d79
to
abec485
Compare
Done |
Looks good. Thanks! |
Well, the solution is mostly described here, I went with a
defcustom
approach. Also I noticed that font locking is applied multiple times for the same match. I'm not sure if this was intentional, but I just removed it and made a single top level capture for all def forms and everything seems to work. There were tests that checked if custom def forms were properly highlighted, but now they're redundant, so I removed themBefore submitting a PR mark the checkboxes for the items you've done (if you
think a checkbox does not apply, then leave it unchecked):
M-x checkdoc
and fixed any warnings in the code you've written.Thanks!