Artur Malabarba

Results 175 comments of Artur Malabarba

Hm. I see why that would happen, but I don't think it has an easy fix. The REPL specifically avoids font locking stuff above the most recent prompt. So any...

Nothing in particular. I could imagine adding several clauses to the code to account for this, but I wouldn't wanna do that for something that's used so little. We could...

I could write some code that prevents users from typing `'` at the end of a symbol. :-D How's that for fixing Clojure?

Well, emacs syntax classes are supposed to be very versatile. I think you can define a function to determine the syntax of a char instead of having it hardcoded. But...

This really plays into one of the few surface areas of Emacs that I've never dipped my toes: Writing a major-mode from scratch.

I've just learned this _might_ be possible with (some generalisation of) the following Font-lock rule ``` ("[0-9a-z]\\('\\)" 1 "_") ```

That's a negative. I've found we can set the `syntax-table` property of a character with a font-lock rule like this: ``` (,clojure--sym-regexp 0 '(face default syntax-table (3 . nil)) append)...

Just confirming that I can reproduce this. Looks like a legit bug.

Hi everyone. I can verify all of the bugs and solutions mentioned. Sadly all I can say is that it's either a bug in `clojure--search-whitespace-after-next-sexp` or an Emacs bug. =/...