Replies: 1 comment
-
I've seen similar inconsistencies in Elisp modes, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Something in the syntax setup (use of syntax properties? I don't know much about this matter) causes
(char-syntax (char-after))
to return a different class thandescribe-char
or(syntax-class-to-char (syntax-class (syntax-after (point))))
for some characters, e.g.#
and"
. This foolsforward-same-syntax
(it gets stuck at#
or quotes),electric-quote-local-mode
andelectric-pair-mode
(theelectric-pair-inhibit-predicate
andelectric-pair-text-syntax-table
don’t work as expected).Beta Was this translation helpful? Give feedback.
All reactions