summaryrefslogtreecommitdiff
path: root/doc/ale.txt
AgeCommit message (Collapse)Author
2018-06-06Add the cquery LSP #1475 #1594Ben Falconer
2018-06-06Allow initialization options to be passed to language serversBen Falconer
2018-06-05Allow all Python linter executables to be set to `pipenv`.Eddie Lebow
It appends ` run {linter_name}`, analogously to the Ruby linters when the executable is set to `bundle`
2018-06-03Add 'scalafmt' fixer for Scala filesJeffrey Lau
closes https://github.com/w0rp/ale/issues/1299
2018-05-30Fix #1610 - Encourage the use of ftplugin files morew0rp
2018-05-30Fix #1523 - Document completion_filterw0rp
2018-05-30Fix a typo in the LSP linter documentationw0rp
2018-05-30Clean up grammar for hover documentation a littlew0rp
2018-05-30Merge pull request #1589 from gagbo/balloon_docw0rp
Documentation : document the mouseover magic
2018-05-30Add mix linter for elixirMagnus Ottenklinger
2018-05-28#1524 - Define global variables where they are neededw0rp
2018-05-28#1524 Remove the plugin conflict warningsw0rp
2018-05-26#1600 Alias vimwiki to markdownw0rp
2018-05-17Do not echo messages to the echo line for mouse movements unless the user ↵w0rp
says so
2018-05-17Documentation : document the mouseover magicGerry Agbobada
This first try is focused on fitting the information in existing paragraphs
2018-05-11Improve g:ale_set_balloons default valuerhysd
2018-05-04Added NASM linterØyvind Ingvaldsen
Added NASM linter (for nasm filetype).
2018-05-03Add g:ale_completion_excluded_words for completion filteringw0rp
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-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-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 #1439 - Add an :ALEInfoToFile commandw0rp
2018-04-08Fix #605 - Support `vcol: 1` for multi-byte character positionsw0rp
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-26Fix a typo in the documentationw0rp
2018-03-25add documentation on mmc 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-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