Re: adding rules for flyspell

2023-05-31 Thread Ihor Radchenko
John Kitchin writes: > I use flyspell, and it looks like org-mode > sets flyspell-generic-check-word-predicate to be org-mode-flyspell-verify. Not directly. Rather we do (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify) Then, flyspell uses this symbol value as the defa

adding rules for flyspell

2023-05-30 Thread John Kitchin
I use flyspell, and it looks like org-mode sets flyspell-generic-check-word-predicate to be org-mode-flyspell-verify. I have a few places I would like to augment this to avoid flyspell overlays in different places. In the past I have done this with around advice, which was ok for one rule, but les