summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2020-11-21Close #2727 - Add a hover-only setting for balloonsw0rp
2020-11-21Fix #3332 - Modify everything for rename/actionsw0rp
ALE now just modifies every open buffer for rename and actions, and sets up a one-time use BufEnter event to reload buffers that are changed so you don't have to think about what to do with changed buffers.
2020-11-21Merge pull request #3357 from creativenull/feat-php-intelephensew0rp
feat: add intelephense support for php
2020-11-21Merge pull request #3354 from rphln/collapse-whitespacesw0rp
Collapse spaces and lines in the completion menu.
2020-11-21Add luafmt fixer (#3289)zandr
2020-11-21Merge pull request #3292 from dmitrivereshchagin/add-elvis-handler-for-erlangw0rp
Add Elvis handler for Erlang
2020-11-21Merge pull request #3282 from zanona/masterw0rp
fix(ale_linters/phpcs): add support for multiline error messages
2020-11-21Test fix.Dalius Dobravolskas
2020-11-21Tests added.Dalius Dobravolskas
2020-11-21#3442 Fix code fix clangd issueDalius Dobravolskas
2020-11-21Close #1466 - Add GVIM refactor menu supportw0rp
Code actions and ALERename now appear in the right click context menu for GVim by default.
2020-11-20Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2020-11-18pass lsp intialization_options to rust-analyzerBen Linsay
fixes #3350
2020-11-14Support for LSP/tsserver Code Actions (#3437)Dalius Dobravolskas
* Added tsserver and LSP code action support. * tsserver refactors support added. * Handling special case when new text is added after new line symbol. * ale#code_action#ApplyChanges simplified. * Initial attempt on LSP Code Actions. * workspace/executeCommand added. * Some null checks added. * Add last column to LSP Code Action message. * Pass diagnostics to LSP code action. Previously ApplyChanges code was applied from top-to-bottom that required extra parameters to track progress and there was bug. I have changed code to bottom-to-top approach as that does not require those extra parameters and solved the bug. Tested with typescript-language-server and it is working.
2020-11-14Merge branch 'master' of github.com:dense-analysis/ale into dhalltoastal
2020-11-01Merge branch 'custom-erlc-executable'pinicarus
2020-10-28test(erlang/erlc): simplify matchespinicarus
2020-10-28test(erlang/erlc): make quotes optional in matchespinicarus
2020-10-28feat(erlang/erlc): add option for custom executablepinicarus
2020-10-23feat: add autoimport fixerLyz
2020-10-23Add ormolu fixer.David Wood
This commit adds a fixer for the Haskell language, ormolu (https://github.com/tweag/ormolu). Signed-off-by: David Wood <david@davidtw.co>
2020-10-20Add Ruby sorbet option to enable watchmanWill Leinweber
2020-10-16Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2020-10-15#3332 Implement :ALERename! for ignoring errorsw0rp
:ALERename! now ignores errors for files that cannot be modified, and modifies all other files.
2020-10-09Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2020-10-08update testsD. Ben Knoble
2020-10-08Merge remote-tracking branch 'origin/master' into fix-swiplD. Ben Knoble
* origin/master: Add tests for maven.vim file Fix grammatical error in doc Add maven helper file; use maven wrapper if available instead of global 'mvn' executable fix lint, fix variable semantics and update tests bibclean: update matchlist reges for bibclean > v2.11.4 Update rubocop_auto_correct_all tag
2020-10-03Use stdin/stdout to communicate with gofmtAndrey Popp
2020-10-02Add tests for maven.vim filefenuks
2020-10-02Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2020-10-01prolog/swipl: add test for new formatD. Ben Knoble
2020-09-30feat(erlang/dialyzer): add custom options passingpinicarus
2020-09-26fix lint, fix variable semantics and update testsbratekarate
2020-09-25fix(ale_linters/phpcs): add support for multiline error messagesMarcus Zanona
2020-09-17fix: test: mkdir should create if it doesn't existArnold Chand
2020-09-17fix: testsArnold Chand
2020-09-17feat: add intelephense support for phpArnold Chand
2020-09-14Collapse spaces and lines in the completion menu.Raphael Nepomuceno
2020-09-14addressing missing docs + cleaning up older Dhall filestoastal
2020-09-14Merge branch 'master' into dhalltoastal
2020-09-11Merge remote-tracking branch 'upstream/master'Bartek thindil Jasicki
2020-09-09Bump the ALE version to 3.0.0v3.0.0w0rp
2020-09-09Close #2522 - Check pylint on the flyw0rp
Newer versions of pylint will now check your code as you type. Older versions will still only check the file on disk. Co-authored-by: Oliver Wiegers <oliver.wiegers@gmail.com>
2020-09-09Add tests for covering the coming Vint versionw0rp
2020-09-08Close #3003 - Show ignored linters in :ALEInfow0rp
2020-09-08Close #3333 - Add an ALECompletePost eventw0rp
Add an `ALECompletePost` event along with everything needed to make it useful for its primary purpose: fixing code after inserting completions. * `ALEFix` can now be called with a bang (`!`) to suppress errors. * A new `ALELintStop` command lets you stop linting, and start it later.
2020-09-08merge master -- apparently someone else added dhall?toastal
2020-09-06Close #3268 - Implement :ALEImportw0rp
A new command, `:ALEImport`, has been added, which lets you import words at your cursor if a completion provider can provide a completion for that word which includes some additional text changes.
2020-09-06Add Elvis handler for ErlangDmitri Vereshchagin
[Elvis][1] is an Erlang style reviewer. [1]: https://github.com/inaka/elvis
2020-09-05Fix #3183 - Escape filename characters from LSP/tsserverw0rp