Skip to content
Discussion options

You must be logged in to vote

The suspicious part is this regexp in your jinx-exclude-regexps:

"[bcolor:[a-zA-Z0-9]+"

In Emacs regexps, [...] is a character class. So this does not match the literal text [bcolor:...]; it matches a run of characters from that class. Since the class contains a-zA-Z0-9, it will match almost every normal word at the beginning, and Jinx will treat those words as excluded.

That also explains the symptoms:

  • automatic highlighting does not show anything
  • jinx-correct-all says there are no misspellings, because the words are excluded
  • jinx-correct-word can still offer suggestions, because that command explicitly forces correction of the word at point even if it was not marked as misspelled

Try …

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@deb75
Comment options

Answer selected by deb75
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants