summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2018-05-04Added NASM linterØyvind Ingvaldsen
Added NASM linter (for nasm filetype).
2018-05-03Merge pull request #1550 from deivid-rodriguez/bundle_option_for_mdlw0rp
Add bundle option to mdl
2018-05-03Add g:ale_completion_excluded_words for completion filteringw0rp
2018-05-01Add bundle option to mdlDavid Rodríguez
2018-04-29Merge pull request #1543 from vancluever/f-add-JobStartedAutoCmdw0rp
Add ALEJobStarted User autocommand event
2018-04-28A couple of more doc fixesChris Marchesi
* Update section 5.viii in the README with ALEJobStarted and re-format the example. * Add an extra line after documentation update to ensure consistency with the rest of the doc.
2018-04-27Fix tests by setting proper link tag in doc for ALEJobStartedChris Marchesi
2018-04-27Add ALEJobStarted User autocommand eventChris Marchesi
The ALELintPre and ALELintPost autocommand events are currently being used by lightline-ale to refresh the status line and check the linter status for a current buffer. One of the plugin's checks looks to see if linters are currently running, via ale#engine#IsCheckingBuffer(). This currently only works partially in certain situations. In my particular case, working with Go files, this only seems to function properly when a file is initially opened. Saving a file does not correctly update the status. This seems to be due to the fact that ALELintPre actually runs before any jobs are carried out, making it plausible that hooking into ALELintPre for the purpose of checking to see if there are any currently running linters for a buffer is unreliable as it would be prone to pretty obvious race conditions. This adds a new User autocommand, ALEJobStarted, that gets fired at the start of every new job that is successfully run. This allows a better point to hook into checking the linter status of a buffer using ale#engine#IsCheckingBuffer() by ensuring that at least one job has started by the time IsCheckingBuffer is run.
2018-04-27Close #1521 - Allow the language to be set with simple strings for LSP lintersw0rp
2018-04-27Fix typos in "lint package" options in docs/ale-goMaxim Baz
2018-04-24Add an American English tag for behaviour toow0rp
2018-04-24#1278 Allow linters to be defined pretty much anywherew0rp
2018-04-24#1428 Show multiline hover messages, and document the new commandw0rp
2018-04-23#1236 Explain how to use Vim jumpsw0rp
2018-04-22Fix a typow0rp
2018-04-22Add support for finding references using LSP servers or tsserverw0rp
2018-04-21add perltidy fixerKenta, Kobayashi
2018-04-21Merge pull request #1511 from elebow/add-cucumber-checkerw0rp
Add `cucumber` checker for Cucumber files
2018-04-20Add cucumber checker for cucumber filesEddie Lebow
For now, it only detects undefined steps. The nearest `features` dir above the buffer file is loaded, so step definitions should be found correctly. Tested only with Cucumber for Ruby, but it should work for any cucumber that follows a substantially similar directory structure.
2018-04-18Add information that ALEFix can now accept argumentsfenuks
2018-04-17Fix #1507 - Add an option for disabling switching directories for pylintw0rp
2018-04-15Close #1504 - Add an option for removing --respect-pragma for floww0rp
2018-04-09Merge pull request #1488 from languitar/pmdw0rp
Add support for the java PMD linter
2018-04-09Close #542 - Add an option for disabling running locally installed ↵w0rp
executables by default
2018-04-09Add support for the java PMD linterJohannes Wienke
2018-04-08Close #1476 - Make the javac executable configurablew0rp
2018-04-08Close #1439 - Add an :ALEInfoToFile commandw0rp
2018-04-08Close #1315 - Make the vint executable configurablew0rp
2018-04-08Fix #605 - Support `vcol: 1` for multi-byte character positionsw0rp
2018-04-07Add g:ale_php_cs_fixer_options variable (#1477)Adriaan Zonnenberg
* Add g:ale_php_cs_fixer_options variable * Fix test
2018-04-07Fix #1479 - Respect g:hdevtools_options for hdevtoolsw0rp
2018-04-06Added support for Python black fixer (#1451)Jack Evans
2018-04-05Integration of qmlfmt linting tool (#1462)P M
* Add first qmlfmt support * Add GetCommand() function - pass --error/-e option * Add handle unittest - fix pattern regex - store col as integer * Update docs * Add command callback unit test
2018-04-05Add fsc linter for Scala (#1452)Nils Leuzinger
* Add fsc as a Scala linter * Pull reused code into `autoload/ale/` directory * Include fsc into the README * Add unit test for testing the scala handler * Add unit test for scala's fsc linter * Rename scala unit tests for clarity * Fix typo in README * Fix typos in doc/ale.txt * Fix author headline * Put methods for fsc commands back into fsc.vim * Move command_callback tests to correct location * Rewrite handler test so it actually tests handler * Clarify description of test in test_scala_handler
2018-04-05Merge pull request #1429 from stewy33/masterw0rp
Add support for Mercury language using mmc as a linter.
2018-03-27#1167 Use the make -n parsing for C++ compilers, and document the new optionw0rp
2018-03-26Fix a typo in the documentationw0rp
2018-03-25add documentation on mmc linterStewy Slocum
2018-03-25add support for mercury language using mmc as linterStewy Slocum
2018-03-25Fix #1404 - Do not show balloons when g:ale_set_balloons is 0. Add ↵v1.8.0w0rp
b:ale_set_balloons
2018-03-25Add basic qmllint support (#1419)P M
* Add basic qmllint support * Use temp file, remove superfluous error code key, adjust author info * Add qmllint handler parse test
2018-03-24Update document for textlintyasuhiroki
2018-03-22Fit documentation to the column size in ale-cs.txtw0rp
2018-03-22Added the word 'find' as it was missing in docs/ale-cs.txtAshley Smith
2018-03-21doc: fix misspelled feature nameLeonardo Pistone
2018-03-20Merge remote-tracking branch 'tylucaskelley/master'w0rp
2018-03-18Merge pull request #1415 from fohte/fixer-rufow0rp
Add rufo fixer for Ruby files
2018-03-18Merge pull request #1410 from fribmendes/frm/mix_format_optionsw0rp
Allow passing options to mix_format
2018-03-18add textlint support for markdown (#1383)Hideaki Tokida
2018-03-18Fix #1392 - Only check files on disk for gotypew0rp