Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-06 | Add the cquery LSP #1475 #1594 | Ben Falconer | |
2018-06-06 | Allow initialization options to be passed to language servers | Ben Falconer | |
2018-06-05 | Allow 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-03 | Add 'scalafmt' fixer for Scala files | Jeffrey Lau | |
closes https://github.com/w0rp/ale/issues/1299 | |||
2018-05-30 | Fix #1610 - Encourage the use of ftplugin files more | w0rp | |
2018-05-30 | Fix #1523 - Document completion_filter | w0rp | |
2018-05-30 | Fix a typo in the LSP linter documentation | w0rp | |
2018-05-30 | Clean up grammar for hover documentation a little | w0rp | |
2018-05-30 | Merge pull request #1589 from gagbo/balloon_doc | w0rp | |
Documentation : document the mouseover magic | |||
2018-05-30 | Add mix linter for elixir | Magnus Ottenklinger | |
2018-05-28 | #1524 - Define global variables where they are needed | w0rp | |
2018-05-28 | #1524 Remove the plugin conflict warnings | w0rp | |
2018-05-26 | #1600 Alias vimwiki to markdown | w0rp | |
2018-05-17 | Do not echo messages to the echo line for mouse movements unless the user ↵ | w0rp | |
says so | |||
2018-05-17 | Documentation : document the mouseover magic | Gerry Agbobada | |
This first try is focused on fitting the information in existing paragraphs | |||
2018-05-11 | Improve g:ale_set_balloons default value | rhysd | |
2018-05-04 | Added NASM linter | Øyvind Ingvaldsen | |
Added NASM linter (for nasm filetype). | |||
2018-05-03 | Add g:ale_completion_excluded_words for completion filtering | w0rp | |
2018-04-29 | Merge pull request #1543 from vancluever/f-add-JobStartedAutoCmd | w0rp | |
Add ALEJobStarted User autocommand event | |||
2018-04-28 | A couple of more doc fixes | Chris 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-27 | Fix tests by setting proper link tag in doc for ALEJobStarted | Chris Marchesi | |
2018-04-27 | Add ALEJobStarted User autocommand event | Chris 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-27 | Close #1521 - Allow the language to be set with simple strings for LSP linters | w0rp | |
2018-04-24 | Add an American English tag for behaviour too | w0rp | |
2018-04-24 | #1278 Allow linters to be defined pretty much anywhere | w0rp | |
2018-04-24 | #1428 Show multiline hover messages, and document the new command | w0rp | |
2018-04-23 | #1236 Explain how to use Vim jumps | w0rp | |
2018-04-22 | Fix a typo | w0rp | |
2018-04-22 | Add support for finding references using LSP servers or tsserver | w0rp | |
2018-04-21 | add perltidy fixer | Kenta, Kobayashi | |
2018-04-21 | Merge pull request #1511 from elebow/add-cucumber-checker | w0rp | |
Add `cucumber` checker for Cucumber files | |||
2018-04-20 | Add cucumber checker for cucumber files | Eddie 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-18 | Add information that ALEFix can now accept arguments | fenuks | |
2018-04-09 | Merge pull request #1488 from languitar/pmd | w0rp | |
Add support for the java PMD linter | |||
2018-04-09 | Close #542 - Add an option for disabling running locally installed ↵ | w0rp | |
executables by default | |||
2018-04-09 | Add support for the java PMD linter | Johannes Wienke | |
2018-04-08 | Close #1439 - Add an :ALEInfoToFile command | w0rp | |
2018-04-08 | Fix #605 - Support `vcol: 1` for multi-byte character positions | w0rp | |
2018-04-06 | Added support for Python black fixer (#1451) | Jack Evans | |
2018-04-05 | Integration 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-05 | Add 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-05 | Merge pull request #1429 from stewy33/master | w0rp | |
Add support for Mercury language using mmc as a linter. | |||
2018-03-26 | Fix a typo in the documentation | w0rp | |
2018-03-25 | add documentation on mmc linter | Stewy Slocum | |
2018-03-25 | Fix #1404 - Do not show balloons when g:ale_set_balloons is 0. Add ↵v1.8.0 | w0rp | |
b:ale_set_balloons | |||
2018-03-25 | Add 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-24 | Update document for textlint | yasuhiroki | |
2018-03-21 | doc: fix misspelled feature name | Leonardo Pistone | |
2018-03-20 | Merge remote-tracking branch 'tylucaskelley/master' | w0rp | |
2018-03-18 | Merge pull request #1415 from fohte/fixer-rufo | w0rp | |
Add rufo fixer for Ruby files |