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

Possible to support aspell directly?

Open ideasman42 opened this issue 5 years ago • 1 comments

This is an attempt to use aspell instead of enchant, it doesn't work and no errors are reported, could docs show an example for aspell since this is a popular spell checker?

    (setq wcheck-language-data
      '
      (
        ("American English"
          (program . "/usr/bin/aspell")
          (args "-d" "en_US" "list")
          (action-program . "/usr/bin/aspell")
          (action-args "-a" "-d" "en_US" "list")
          (action-parser . wcheck-parser-ispell-suggestions)
          )
        )
      )

ideasman42 avatar May 29 '19 01:05 ideasman42

You need to add (connection . pty) to use it. The same with Hunspell. And in action-args replace last list with pipe.

https://github.com/tlikonen/wcheck-mode/issues/11#issuecomment-520255553

vsemyonoff avatar Aug 11 '19 20:08 vsemyonoff