redguardtoo / wucuo

Fastest solution to spell check camel case code or plain text
122 stars 4 forks source link

Allow faces to be a list of faces #12

Closed fuzzycode closed 4 years ago

fuzzycode commented 4 years ago

This fixes #11 by allowing the font faces to be checked to be a list.

If any of the provided font faces match one of the configured once, it is considered a match and the text should be spellchecked.

redguardtoo commented 4 years ago

Is intersection supported by Emacs 25?

fuzzycode commented 4 years ago

I am not entirely sure, I am not that proficient with emacs lisp. The help, nor the manual gave any information on in what version it was added.

It appears to be an alias for cl-intersection from the cl-seq library that appear to have been around for a long time.

redguardtoo commented 4 years ago

No problem. Use (require 'cl-lib) instead of (require 'cl-seq)

redguardtoo commented 4 years ago

Thanks