neoreader icon indicating copy to clipboard operation
neoreader copied to clipboard

(feedback) spelllang detection

Open sharethewisdom opened this issue 7 years ago • 0 comments

just a quick note: I use espeak and in call_say, I added

lang = self.vim.eval("getbufvar('%', '&spelllang')").split(',')[0]
if self.get_option(self.Options.USE_ESPEAK):
    args = ["espeak"]
    if lang:
        args += ["-v", str(lang)]
    ...

This works, but could obviously be improved.

I think this is a really cool simple plugin and I wish that it would also read errors and warnings whenever they appear. A few weeks ago, I asked a question about that.

sharethewisdom avatar Mar 05 '18 10:03 sharethewisdom