wcheck-mode icon indicating copy to clipboard operation
wcheck-mode copied to clipboard

read-or-skip-faces ignores which modes inherit from others

Open AvverbioPronome opened this issue 8 years ago • 2 comments

ie: if I say:

(text-mode read nil)

I also have to say:

(markdown-mode read nil)

Is this on purpose?

AvverbioPronome avatar Apr 20 '16 12:04 AvverbioPronome

Wcheck mode doesn't know about inheritance. It checks the mode name symbol only.

tlikonen avatar Sep 25 '16 05:09 tlikonen

Alternative way to do

(text-mode read nil)
(markdown-mode read nil)

is this:

((text-mode markdown-mode) read nil)

tlikonen avatar Jan 21 '24 10:01 tlikonen