Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-11-21 | Close #2727 - Add a hover-only setting for balloons | w0rp | |
2020-11-21 | Fix #3332 - Modify everything for rename/actions | w0rp | |
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-21 | Merge pull request #3357 from creativenull/feat-php-intelephense | w0rp | |
feat: add intelephense support for php | |||
2020-11-21 | Merge pull request #3354 from rphln/collapse-whitespaces | w0rp | |
Collapse spaces and lines in the completion menu. | |||
2020-11-21 | Add luafmt fixer (#3289) | zandr | |
2020-11-21 | Merge pull request #3292 from dmitrivereshchagin/add-elvis-handler-for-erlang | w0rp | |
Add Elvis handler for Erlang | |||
2020-11-21 | Merge pull request #3282 from zanona/master | w0rp | |
fix(ale_linters/phpcs): add support for multiline error messages | |||
2020-11-21 | Test fix. | Dalius Dobravolskas | |
2020-11-21 | Tests added. | Dalius Dobravolskas | |
2020-11-21 | #3442 Fix code fix clangd issue | Dalius Dobravolskas | |
2020-11-21 | Close #1466 - Add GVIM refactor menu support | w0rp | |
Code actions and ALERename now appear in the right click context menu for GVim by default. | |||
2020-11-20 | Merge remote-tracking branch 'upstream/master' | Bartek thindil Jasicki | |
2020-11-18 | pass lsp intialization_options to rust-analyzer | Ben Linsay | |
fixes #3350 | |||
2020-11-14 | Support 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-14 | Merge branch 'master' of github.com:dense-analysis/ale into dhall | toastal | |
2020-11-01 | Merge branch 'custom-erlc-executable' | pinicarus | |
2020-10-28 | test(erlang/erlc): simplify matches | pinicarus | |
2020-10-28 | test(erlang/erlc): make quotes optional in matches | pinicarus | |
2020-10-28 | feat(erlang/erlc): add option for custom executable | pinicarus | |
2020-10-23 | feat: add autoimport fixer | Lyz | |
2020-10-23 | Add 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-20 | Add Ruby sorbet option to enable watchman | Will Leinweber | |
2020-10-16 | Merge remote-tracking branch 'upstream/master' | Bartek thindil Jasicki | |
2020-10-15 | #3332 Implement :ALERename! for ignoring errors | w0rp | |
:ALERename! now ignores errors for files that cannot be modified, and modifies all other files. | |||
2020-10-09 | Merge remote-tracking branch 'upstream/master' | Bartek thindil Jasicki | |
2020-10-08 | update tests | D. Ben Knoble | |
2020-10-08 | Merge remote-tracking branch 'origin/master' into fix-swipl | D. 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-03 | Use stdin/stdout to communicate with gofmt | Andrey Popp | |
2020-10-02 | Add tests for maven.vim file | fenuks | |
2020-10-02 | Merge remote-tracking branch 'upstream/master' | Bartek thindil Jasicki | |
2020-10-01 | prolog/swipl: add test for new format | D. Ben Knoble | |
2020-09-30 | feat(erlang/dialyzer): add custom options passing | pinicarus | |
2020-09-26 | fix lint, fix variable semantics and update tests | bratekarate | |
2020-09-25 | fix(ale_linters/phpcs): add support for multiline error messages | Marcus Zanona | |
2020-09-17 | fix: test: mkdir should create if it doesn't exist | Arnold Chand | |
2020-09-17 | fix: tests | Arnold Chand | |
2020-09-17 | feat: add intelephense support for php | Arnold Chand | |
2020-09-14 | Collapse spaces and lines in the completion menu. | Raphael Nepomuceno | |
2020-09-14 | addressing missing docs + cleaning up older Dhall files | toastal | |
2020-09-14 | Merge branch 'master' into dhall | toastal | |
2020-09-11 | Merge remote-tracking branch 'upstream/master' | Bartek thindil Jasicki | |
2020-09-09 | Bump the ALE version to 3.0.0v3.0.0 | w0rp | |
2020-09-09 | Close #2522 - Check pylint on the fly | w0rp | |
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-09 | Add tests for covering the coming Vint version | w0rp | |
2020-09-08 | Close #3003 - Show ignored linters in :ALEInfo | w0rp | |
2020-09-08 | Close #3333 - Add an ALECompletePost event | w0rp | |
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-08 | merge master -- apparently someone else added dhall? | toastal | |
2020-09-06 | Close #3268 - Implement :ALEImport | w0rp | |
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-06 | Add Elvis handler for Erlang | Dmitri Vereshchagin | |
[Elvis][1] is an Erlang style reviewer. [1]: https://github.com/inaka/elvis | |||
2020-09-05 | Fix #3183 - Escape filename characters from LSP/tsserver | w0rp | |