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/markdown/redpen.vim
5 call ale#linter#Reset()
7 Execute(redpen handler should handle errors output):
15 \ 'text': 'Found possibly misspelled word "plugin".',
22 \ 'text': 'Found possibly misspelled word "NeoVim".',
31 \ 'text': 'Found possibly misspelled word "コードチェック".',
36 \ ale#handlers#redpen#HandleRedpenOutput(bufnr(''), [
39 \ ' "document": "test.md",',
42 \ ' "sentence": "ALE is a plugin for providing linting in NeoVim and Vim 8 while you edit your text files.",',
43 \ ' "endPosition": {',
47 \ ' "validator": "Spelling",',
49 \ ' "sentenceStartColumnNum": 0,',
50 \ ' "message": "Found possibly misspelled word \"plugin\".",',
51 \ ' "startPosition": {',
57 \ ' "sentence": "ALE is a plugin for providing linting in NeoVim and Vim 8 while you edit your text files.",',
58 \ ' "validator": "Spelling",',
60 \ ' "sentenceStartColumnNum": 0,',
61 \ ' "message": "Found possibly misspelled word \"NeoVim\"."',
64 \ ' "sentence": "ALEはNeoVimとVim8で非同期のコードチェックを実現するプラグインです。",',
65 \ ' "endPosition": {',
69 \ ' "validator": "Spelling",',
71 \ ' "sentenceStartColumnNum": 0,',
72 \ ' "message": "Found possibly misspelled word \"コードチェック\".",',
73 \ ' "startPosition": {',
83 Execute(The redpen handler should handle an empty error list):
86 \ ale#handlers#redpen#HandleRedpenOutput(bufnr(''), [
89 \ ' "document": "test.md",',
95 Execute(The redpen handler should handle totally empty output):
98 \ ale#handlers#redpen#HandleRedpenOutput(bufnr(''), [])