Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-11-25 | Ensure isort / pipenv test conforms to ALE coding standards | Ivor Peles | |
2020-11-25 | Fix comparison operator | Ivor Peles | |
2020-11-21 | Ignore executable check when executable is pipenv | Ivor Peles | |
2020-11-21 | Add test for isort with auto_pipenv flag(s) | Ivor Peles | |
2020-11-21 | Set default value for python_isort_auto_pipenv | Ivor Peles | |
2020-11-21 | Document ale_python_isort_auto_pipenv option | Ivor Peles | |
2020-11-21 | Use pipenv isort executable when python_auto_pipenv = 1 | Ivor Peles | |
2020-11-21 | Use _config for LSP config options | w0rp | |
2020-11-21 | Add support for R languageserver (#3370) | Eric Zhao | |
2020-11-21 | Fix 3103 - add shellcheck shell directive detection. (#3216) | Horacio Sanson | |
* Fix 3103 - add shellcheck shell directive detection. Searches for shellcheck shell directive to detect dialects for scripts that do not have shebang. * Change order of detection of shellcheck dialect In a situation where the filetype can be wrong (example: something.sh which is written in bash dialect) and has no hash-bang (since it is meant to be sourced) then the override specified within the script will be ignored. It probably is the most right thing to do if the script author has added a specific directive; it should trump everything else. Co-authored-by: Horacio Sanson <horacio@allm.inc> Co-authored-by: Dino Korah <dino.korah@redmatter.com> | |||
2020-11-21 | Merge pull request #3409 from lyz-code/feat/add-autoimport-support | w0rp | |
feat: add autoimport fixer | |||
2020-11-21 | Added the Vundle command in installation instructions (#3400) | Gabriel Petrovay | |
2020-11-21 | Adds support for Tlint - A Tighten Opinionated PHP Linter (#3291) | Jose Soto | |
Co-authored-by: w0rp <w0rp@users.noreply.github.com> | |||
2020-11-21 | Merge pull request #2903 from davidtwco/ormolu-fixer | w0rp | |
Add ormolu fixer. | |||
2020-11-21 | Add php phpcbf options (#3383) | Dale Jung | |
* Taken from phpcs. add add_php_phpcbf_options #3382 * Updated docs for php_phpcbf_options #3382 * Added tests #3382 | |||
2020-11-21 | Merge pull request #3380 from rgossiaux/patch-1 | w0rp | |
Fix typo in ale-python.txt | |||
2020-11-21 | Use has('gui_running') instead of has('gui') | w0rp | |
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 #3358 from lukaswozniak/master | w0rp | |
Improves fixer performance for large buffers | |||
2020-11-21 | Add a missing blank line in documentation | w0rp | |
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 | Merge pull request #3352 from arthrarnld/patch-1 | w0rp | |
Fix wording in Rust doc | |||
2020-11-21 | Fix handling of ranges at file end. (#3344) | w0rp | |
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 | Merge pull request #3435 from myobie/yarn-berry | w0rp | |
For linters/tserver and handlers/eslint: look for node packages in .yarn/sdks as well | |||
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-17 | Look for node packages in .yarn/sdks as well | Nathan Herald | |
2020-11-14 | Update documentation for code actions and rename | w0rp | |
2020-11-14 | cmp forwards, and reverse the code actions | w0rp | |
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-05 | Merge pull request #3427 from lifecrisis/sh-buffer-vars | Horacio Sanson | |
Check for Vim's shell type buffer variables before falling back to the file type | |||
2020-11-02 | Move the test for buffer-local variables | Jason Franklin | |
The "ale#handlers#sh#GetShellType()" function currently falls back to the file type without checking for buffer-local variables first. This causes the function to return "sh" even when a script is known by Vim to be a script of a more specific type (e.g., "bash"). The "ale#handlers#shellcheck#GetDialectArgument()" function then erroneously uses this type even though a more fitting type should be used instead. Files without a "#!" line will be of type "sh" even though they may have a ".bash" suffix. This commit fixes the problem by checking for buffer-local shell type variables (set by Vim) before falling back to the file type. | |||
2020-11-02 | Use the proper term for the "#!" line | Jason Franklin | |
2020-11-02 | Remove a noise comment | Jason Franklin | |
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-15 | Make the two nearly identical Swift tools easier to distinguish | w0rp | |
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-15 | Fix sorting of supported tools | w0rp | |
2020-10-02 | Fix typo in ale-python.txt | rgossiaux | |
2020-10-02 | Merge pull request #3374 from fenuks/maven_helper | Horacio Sanson | |
Use maven wrapper if available | |||
2020-10-02 | Add tests for maven.vim file | fenuks | |
2020-10-01 | Merge pull request #3375 from isaif/fix-doc | Horacio Sanson | |
Fix grammatical error in doc | |||
2020-10-01 | Fix grammatical error in doc | isaif | |
2020-09-30 | Add maven helper file; use maven wrapper if available instead of global ↵ | fenuks | |
'mvn' executable |