All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
2 runtime! ale_linters/text/languagetool.vim
5 call ale#linter#Reset()
7 Execute(languagetool handler should report 3 errors):
14 \ 'text': 'This sentence does not start with an uppercase letter',
16 \ 'code': 'UPPERCASE_SENTENCE_START',
22 \ 'text': "Did you mean 'to see'?",
24 \ 'code': 'TOO_TO[1]',
30 \ 'text': "Use 'a' instead of 'an' if the following word doesn't start with a vowel sound, e.g. 'a sentence', 'a university'",
32 \ 'code': 'EN_A_VS_AN',
35 \ ale#handlers#languagetool#HandleOutput(bufnr(''), [
36 \ '1.) Line 3, column 19, Rule ID: UPPERCASE_SENTENCE_START',
37 \ 'Message: This sentence does not start with an uppercase letter',
39 \ '...red phrases for details on potential errors. or use this text too see an few of of the probl...',
42 \ '2.) Line 3, column 36, Rule ID: TOO_TO[1]',
43 \ "Message: Did you mean 'to see'?",
44 \ 'Suggestion: to see',
45 \ '...etails on potential errors. or use this text too see an few of of the problems that LanguageTool ...',
48 \ '3.) Line 3, column 44, Rule ID: EN_A_VS_AN',
49 \ "Message: Use 'a' instead of 'an' if the following word doesn't start with a vowel sound, e.g. 'a sentence', 'a university'",
51 \ '...n potential errors. or use this text too see an few of of the problems that LanguageTool can...',
53 \ 'Time: 2629ms for 8 sentences (3.0 sentences/sec)'
56 Execute(languagetool handler should report no errors on empty input):
59 \ ale#handlers#languagetool#HandleOutput(bufnr(''), [
61 \ 'Time: 2629ms for 8 sentences (3.0 sentences/sec)'