Skip to content
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

Merged

Conversation

OknoLombarda
Copy link
Contributor

Fixes #377

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 them


Before submitting a PR mark the checkboxes for the items you've done (if you
think a checkbox does not apply, then leave it unchecked):

  • The commits are consistent with our contribution guidelines.
  • You've added tests (if possible) to cover your change(s). Bugfix, indentation, and font-lock tests are extremely important!
  • You've run M-x checkdoc and fixed any warnings in the code you've written.
  • You've updated the changelog (if adding/changing user-visible functionality).
  • You've updated the readme (if adding/changing user-visible functionality).

Thanks!

@vemv
Copy link
Member

vemv commented Aug 29, 2022

Personally I feel that there are a lot of def-like forms, and consequently the default experience will be worse than currently.

Therefore I'd suggest an alternative approach: default to the current approach, but blacklist a few words from the English dictionary: default, defer, etc. There cannot be so many of them.

wdyt?

Cheers - V

@bbatsov
Copy link
Member

bbatsov commented Aug 29, 2022

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 def forms. It's not like we're not doing the same for everything else, so let's become more consistent internally.

@vemv
Copy link
Member

vemv commented Aug 29, 2022

Is this something that CIDER already enhaces anyway? (or that it could, after this PR)

@bbatsov
Copy link
Member

bbatsov commented Aug 29, 2022

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 clojure-mode IMO. The smarts should be at the level of CIDER, clojure-lsp, not in clojure-mode.

@OknoLombarda
Copy link
Contributor Author

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

@bbatsov
Copy link
Member

bbatsov commented Aug 29, 2022

Hmm, I thought that defcustoms should be available at complile time. Anyways, no rush.

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

That's how we roll! 😉

@OknoLombarda
Copy link
Contributor Author

Managed to fix it by wrapping defcustom form in eval-and-compile, but def forms added after compilation are just ignored. Everything works fine if I remove eval-when-compile from clojure-font-lock-keywords, though

(defconst clojure-font-lock-keywords
(eval-when-compile

But I guess compiling this regexp is necessary

@OknoLombarda
Copy link
Contributor Author

So I just excluded regexp responsible for def forms from eval-when-compile

@OknoLombarda OknoLombarda force-pushed the fix-font-locking-for-def-forms branch from 70421b6 to e548d79 Compare August 30, 2022 05:06
@bbatsov
Copy link
Member

bbatsov commented Aug 30, 2022

Looking at the Emacs docs it seems that eval-when-compile is just a performance optimization here. Not sure how big of an effect it has - frankly, even though I've been using Emacs almost 20 years I keep forgetting things about byte-compilation optimizations.

@OknoLombarda
Copy link
Contributor Author

OknoLombarda commented Aug 30, 2022

From the docs:

The result of evaluation by the compiler becomes a constant which appears in the compiled program.

It seems it's kinda like ^:const in Clojure. Expression is evaluated and used as a constant.

If this list is evaluated frequently, maybe it's better to leave at least part of it evaluated during compilation

@OknoLombarda
Copy link
Contributor Author

So, should I leave it like this, remove eval-when-compile or try to find some other solution?

@bbatsov
Copy link
Member

bbatsov commented Aug 30, 2022

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 font-lock-add-keywords invocations in the mode setup. That's how clojure-mode-extra-font-locking works:

(font-lock-add-keywords 'clojure-mode
                        `((,(concat "(\\(?:\.*/\\)?"
                                    (regexp-opt clojure-built-in-vars t)
                                    "\\>")
                           1 font-lock-builtin-face)))

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.

@OknoLombarda OknoLombarda force-pushed the fix-font-locking-for-def-forms branch from e548d79 to abec485 Compare August 30, 2022 09:51
@OknoLombarda
Copy link
Contributor Author

Done

@bbatsov
Copy link
Member

bbatsov commented Aug 30, 2022

Looks good. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Def highlighting is out of control
3 participants