Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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-07 | Fix a completion error | w0rp | |
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-05 | Fix #3183 - Escape filename characters from LSP/tsserver | w0rp | |
2020-09-04 | Fix #3322 - Apply rename changes correctly | w0rp | |
2020-08-31 | Merge pull request #3078 from jgehrig/jg-issue2958 | w0rp | |
Issue 2958: Addtional ^M characters on Windows | |||
2020-08-29 | Close #3205 - Avoid inserting completions by default | w0rp | |
2020-08-29 | Fix #2971 - Disable automatic completion while 'paste' is active | w0rp | |
2020-08-29 | Fix #3247 - Use --always-make for make -n by default | w0rp | |
2020-08-29 | Add a missing `augroup END` line | w0rp | |
2020-08-29 | Improved macro handling in gcc | Kimplul | |
2020-08-29 | #3319 - Try to modify buffers later for ALEFix | w0rp | |
2020-08-28 | Close #3325 - Apply new formatting where possible | w0rp | |
2020-08-28 | #3325 - ale#path#BufferCdString now generates %s:h | w0rp | |
2020-08-28 | Close #3285 - lint_file is now dynamic | w0rp | |
`lint_file` can now be computed dynamically with a callback function, which can return a deferred result, as per `ale#command#Run`. This allows linters to dynamically switch between checking files on disk, or checking code on the fly. Some tests have been fixed on Windows. | |||
2020-08-28 | Close #3309 - Add b:ale_lint_delay | w0rp | |
2020-08-28 | Fix #3323 - Set default for g:ale_filename_mappings | w0rp | |
2020-08-28 | #3324 - Enable rls by default | w0rp | |
2020-08-28 | Set prettier working directory to where .prettierignore is (#3101) | Sorin Iclanzan | |
Prettier does not use `.prettierignore` unless the current directory is the root where the `.prettierignore` file resides. * Update Prettier tests * Look for prettierignore to determine project root | |||
2020-08-27 | Fix #3319 - Force modifications to buffers | w0rp | |
2020-08-27 | Fix #3318 - Escape macros when parsing C flags | w0rp | |
2020-08-27 | Fix C flag parsing and tests on Windows | w0rp | |
2020-08-27 | #3318 Refactor C flag parsing to set up for quoting arguments | w0rp | |
2020-08-27 | #3266 - Catch echo visual selection errors | w0rp | |
2020-08-27 | Merge pull request #3310 from pbrisbin/master | w0rp | |
Add dhall-format as a Fixer | |||
2020-08-27 | Fix #3317 - Parse -include from C flags | w0rp | |
2020-08-27 | Fix #3316 - Repeat -relative for ALERepeatSelection | w0rp | |
2020-08-27 | Fix #3307 - Handle compile_commands paths better | w0rp | |
ALE now converts paths from compile_commands.json files into absolute paths and prefers matching against absolute file and directory names for determining which flags to use for files. As a result, parsing compile_commands.json to determine flags should work for a lot more C and C++ projects. | |||
2020-08-27 | #3312 - Just check if additionalTextEdits is non-empty | w0rp | |
2020-08-27 | Fix #3312 - Fix a false positive for auto imports | w0rp | |
ALE was incorrectly detecting completion results from servers such as rust-analyzer as wanting to add import lines when additionalTextEdits was present, but empty. Now ALE only filters out completion results if the autoimport setting is off, and one of the additionalTextEdits starts on some line other than the current line. If any additionalTextEdits happen to be identical to the change from completion anyway, ALE will skip them. | |||
2020-08-25 | Add dhall-format as a Fixer | patrick brisbin | |
https://github.com/dhall-lang/dhall-lang | |||
2020-08-24 | #2556 - Support modifiers for formatted filenames | w0rp | |
2020-08-24 | Merge pull request #3302 from khaveesh/master | Horacio Sanson | |
latexindent: Run fixer from stdin instead of a temporary file | |||
2020-08-23 | Close #2556 - Support filename mapping | w0rp | |
ALE now supports mapping files between different systems for running linters and fixers with Docker, in virtual machines, in servers, etc. | |||
2020-08-21 | refactor(Fixer): Change latexindent to read from stdin instead of temporary file | Khaveesh N | |
This is a better strategy as it avoids creating temporary files and the delay that follows | |||
2020-08-20 | Keep -iframework if present in parsed C/C++ flags (#3057) | awang | |
* Keep -iframework if present in parsed C/C++ flags * Add test to make sure -iframework is parsed Co-authored-by: Alex Wang <ts826848@gmail.com> | |||
2020-08-19 | Try to fix Windows tests again | w0rp | |
2020-08-19 | Try to fix tests on Windows | w0rp | |
2020-08-19 | Fix #3200 - Do not use -fstack-usage from parsed flags | w0rp | |
2020-08-19 | Merge pull request #3178 from sudobash1/expand_at | w0rp | |
Fixes #3092 - Implement loading `@file` c arguments | |||
2020-08-18 | Remove features deprecated in previous versions | w0rp | |
2020-08-18 | Fix #3294 - Fix hover off by 1, handle LSP server crashes | w0rp | |
2020-08-17 | Merge pull request #3046 from hsanson/2816-fix-standard-fix-doesnt-work | w0rp | |
Fix 2816 - Standard fix does not work. | |||
2020-08-17 | Merge pull request #2906 from ↵ | w0rp | |
elebow/shelldetect-fall-back-to-filetype-if-no-hashbang ShellDetect falls back to filetype if no hashbang (fixes #2886) | |||
2020-08-17 | Add remark-lint for a markdown fixer (#2836) | blyoa | |
2020-08-14 | Fix #2899 - Handle tsserver default import completion | w0rp | |
2020-08-14 | Merge pull request #3144 from jamescdavis/dont_append_newline_when_noeol | w0rp | |
don't append a newline to temp file when buffer is noeol and nofixeol is set |