rhysd / vim-grammarous

A powerful grammar checker for Vim using LanguageTool.
1.1k stars 41 forks source link

Passive voice not detected #65

Closed pdoak closed 6 years ago

pdoak commented 6 years ago

Grammarous does not seem to detect the passive voice. I have taken the following sentence from The Language Tool website which is in the passive voice:

Her work will have been finished by tonight.

Is it possible to highlight the use of the passive voice with Grammarous?

rhysd commented 6 years ago

Please update to the latest and try following config. I confirmed PASSIVE_VOICE rule is checked.

let g:grammarous#enabled_rules = {'*' : ['PASSIVE_VOICE']}
pdoak commented 6 years ago

That worked. Thank you.