summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-10-10REVERT "#39 Use getbufline() for MacVim GUI too."w0rp
This reverts commit 3083d05afd3818e5db33f066392935bbf828e263.
2016-10-10Merge pull request #79 from KabbAmine/fix-typosw0rp
Fix typos in README
2016-10-10Merge pull request #77 from KabbAmine/minor-fixesw0rp
Minor fixes:
2016-10-10Minor fixes:Kabbaj Amine
* Ensure that php linter pattern does not include spaces: PHP can return errors with extra spaces like the following: `PHP Parse error: syntax error, unexpected end of file in t.php on line 4` * Set option locally to buffer * Rename noErrors variable according to the project's naming convention * Make the jsonlint pattern a little better
2016-10-10Fix typos in READMEKabbaj Amine
2016-10-10#74 - Document g:ale_buffer_loclist_mapw0rp
2016-10-10Fix #75 - Explain that you need to update NeoVim in the plugin itself.w0rp
2016-10-10Correct some grammar in the docs.w0rp
2016-10-10Merge remote-tracking branch 'origin/echo-string-format'w0rp
2016-10-10#39 Use getbufline() for MacVim GUI too.w0rp
2016-10-10Echo string format (#76)KabbAmine
* Implement an option to configure the echoed message, #48 Via `g:ale_echo_msg_format` where: - `%s` is the error message itself - `%linter%` is the linter name - `%severity` is the severity type e.g let g:ale_echo_msg_fomat = '[%linter%] [%severity%] %s' * Add new options for defining the string used for errors in echoed message `g:ale_echo_msg_error_str` and `g:ale_echo_msg_warning_str` * Change text output of some linters Now that the echoed message can be customized, no need to add the type to the text variable. * Update README & documentation file * Fix some typos * Sort the table of options alphabetically (except echo_msg_x_str options) * Added echo warning str option to the doc
2016-10-09#48 Store the linter name in the loclist objects for later use.w0rp
2016-10-09Correct issues with some errors appearing at line 0, not 1.w0rp
2016-10-09Up-indent types and defaults, and align markersw0rp
2016-10-09Make spacing and indentation consistent in the documentation, and make the ↵w0rp
docs easier to read.
2016-10-09Merge #66 with some amendments.Marc Delage
2016-10-09Merge branch 'shell-detection'w0rp
2016-10-09Merge pull request #73 from KabbAmine/fix-69w0rp
Modify shell's pattern to handle locals other than english, fixes #69
2016-10-09Modify shell's pattern to handle locals other than english, fixes #69Kabbaj Amine
2016-10-09Document the default shell optionw0rp
2016-10-09#69 Change the default shell for shell lintingw0rp
2016-10-09Handle arguments to shells in shebang lines too.w0rp
2016-10-09#69 Improve shell detectionw0rp
2016-10-09Merge pull request #72 from SkySymbol/perl-supportw0rp
Add support for perl and perlcritic
2016-10-09Add support for perl and perlcriticVincent Lequertier
2016-10-09Fix a bug where echoing in modes like visual select caused some errors.w0rp
2016-10-09Remove some trailing whitespace.w0rp
2016-10-09Merge pull request #70 from mshr-h/add-comment-headerw0rp
Add comment headers to verilog linters
2016-10-09Add comment headers to verilog lintersmshr-h
2016-10-09Wrap the badge into the titlew0rp
2016-10-09Add a Travis CI image to the READMEw0rp
2016-10-08Correct all Vint warningsw0rp
2016-10-08Make Travis cache pipw0rp
2016-10-08Add a Travis config for running vint.w0rp
2016-10-08Send the buffers to the linters using getbufline() on Windows, re issue #39w0rp
2016-10-08Handle there being no process for a job better in Vim 8, re issue #39.w0rp
2016-10-08Use shortmess for shortening long echo lines instead.w0rp
2016-10-08Don't store jobs themselves in maps in Vim 8, as per issue #39.w0rp
2016-10-08Merge pull request #68 from KabbAmine/linter-coffeew0rp
Add coffee linter
2016-10-08Merge pull request #67 from KabbAmine/linter-htmlhintw0rp
Add linter HTMLHint for html files
2016-10-08Merge pull request #65 from mshr-h/support-verilatorw0rp
Support verilator for verilog
2016-10-08Add coffee linterKabbaj Amine
2016-10-08Use cmd /c for Windows commands to fix a bug with running linters on Windows.w0rp
2016-10-08Add linter HTMLHint for html filesKabbaj Amine
2016-10-08Add verilator for verilogmshr-h
2016-10-08Add cpp linter (#64)Marc Delage
* Add c gcc option in the doc * Add missing tag for eslint option in the doc * Correct typo in doc (' ' instead of '.') * add cpp linter * correct typo in doc * add filetype information for c++
2016-10-08Add iverilog for verilog (#63)Masahiro H
* Add iverilog for verilog * Remove extra spacing/blank line * Set column to 1
2016-10-07Add support for Pug with pug-lint.w0rp
2016-10-07Add a wrapper program for running linters which cannot receive stdin input ↵w0rp
on Windows.
2016-10-07Merge pull request #62 from KabbAmine/linter-tidy-refactorw0rp
Refactor tidy support