Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-12-20 | Fix #1115 - Add support for wrapping all commands with an option | w0rp | |
2017-12-19 | Fix the mscs tests on Windows, and use the improved Simplify for all tests ↵v1.7.0 | w0rp | |
instead. | |||
2017-12-19 | Allow the cursor messages to be disabled while Vim is running | w0rp | |
2017-12-19 | Fix #1228 - Reset the cursor if echoing a message moves it | w0rp | |
2017-12-18 | Missing warning level 'suggestion' for vale | Johannes Wienke | |
Vale can also, optionally, raise suggestions. These weren't covered yet. | |||
2017-12-18 | Fix #1210 - Fix a Windows path issue which broke TSLint | w0rp | |
2017-12-18 | Remove some now redundant echo code | w0rp | |
2017-12-18 | #1212 Fix some echo cursor flashing by only echoing once all linters are ↵ | w0rp | |
finished. | |||
2017-12-18 | Merge pull request #1232 from languitar/vale-json | w0rp | |
Use JSON output with vale | |||
2017-12-18 | Add support for Vritual Env folder called venv | Daniel Parker | |
2017-12-17 | Use JSON output with vale | Johannes Wienke | |
Switches all vale instances to JSON output and provides an appropriate handler for that. Without JSON, no end_col is provided and text highlighting only catches the first character of every result. | |||
2017-12-17 | Merge pull request #1220 from languitar/linter-alex | w0rp | |
Add a linter for alex | |||
2017-12-17 | Look for mypy.ini to find Python project roots too | w0rp | |
2017-12-17 | Fix a typo | w0rp | |
2017-12-17 | Merge pull request #1203 from Carpetsmoker/autocmd-start | w0rp | |
Add ALEStartLint autocmd | |||
2017-12-13 | Add a linter for alex | Johannes Wienke | |
https://github.com/wooorm/alex Enabled for text-like file formats and documented in README and doc. | |||
2017-12-10 | Run before lint cycle, rename autocmds | Martin Tournoij | |
2017-12-09 | add google-java-format fixer | butlerx | |
2017-12-08 | goimports fixer doesn't work for vendored libraries | Martin Tournoij | |
In Go you can "vendor" packages by putting them in the `vendor/` directory for a project. Adding the `-srcdir` argument makes `goimports` pick up these packages, in addition to what you have in GOPATH. Without this, `goimports` is not very useful, since most projects vendor their packages. | |||
2017-12-07 | Fix #1205 Do not add line highlights if the groups do not exist | w0rp | |
2017-12-07 | Merge pull request #1174 from ↵ | w0rp | |
eborden/eborden/add-brittany-for-haskell-formatting Add brittany for Haskell formatting | |||
2017-12-07 | Add ALEStartLint autocmd | Martin Tournoij | |
This grew out of my work in #1193; to ensure the statusline was being updated I had to add: fun! s:redraw(timer) redrawstatus endfun augroup ALEProgress autocmd! autocmd BufWritePost * call timer_start(100, function('s:redraw')) autocmd User ALELint redrawstatus augroup end Which kind of works, but is ugly. With this, I can replace the `BufWritePost` with: autocmd User ALEStartLint redrawstatus Which is much better, IMHO. Actually, this patch actually replaces adding a function, since you can do: augroup ALEProgress autocmd! autocmd User ALEStartLint hi Statusline ctermfg=darkgrey autocmd User ALELint hi Statusline ctermfg=NONE augroup end or: let s:ale_running = 0 let l:stl .= '%{s:ale_running ? "[linting]" : ""}' augroup ALEProgress autocmd! autocmd User ALEStartLint let s:ale_running = 1 | redrawstatus autocmd User ALELint let s:ale_running = 0 | redrawstatus augroup end Both seem to work very well in my testing. No need to `ale#Statusline#IsRunning()` anymore, I think? | |||
2017-12-05 | added importjs fixer | Jeff Willette | |
- added tests for fixer functions - added docs | |||
2017-12-02 | Fix #1186 - Disable checking code with perl by default | w0rp | |
2017-12-02 | Merge pull request #1188 from ejsexton82/master | w0rp | |
Fixed Command String for phpcbf Fixer | |||
2017-12-01 | Make toggling work when pattern options are enabled | w0rp | |
2017-12-01 | Fixed command string for phpcbf fixer | E.J. Sexton | |
2017-11-30 | Fix #1176 - Add an option for caching failing executable checks | w0rp | |
2017-11-30 | Escape the filename for finddir | w0rp | |
2017-11-30 | fnameescape when searching nearest file | Lukas Galke | |
2017-11-29 | Fix #1178 - Don't use the output from eslint_d for fixing files when the ↵ | w0rp | |
output is an error message | |||
2017-11-28 | Add brittany for Haskell formatting | Evan Rutledge Borden | |
`brittany` is one of the options for Haskell source formatting. This adds the necessary fixer files and documentation to support `brittany` in `ALE`. | |||
2017-11-26 | Implement go to defintion for LSP linters | w0rp | |
2017-11-26 | Compress one line | w0rp | |
2017-11-26 | Fix #918 - Save prettier details for Haskell linters | w0rp | |
2017-11-26 | #1162 Get LSP completions working reasonably well | w0rp | |
2017-11-26 | #1162 Add unfinished experimental code for supporting LSP completion, clean ↵ | w0rp | |
up the tests, and make the completion cancelling better | |||
2017-11-25 | Delete to black hole register in fixer | Martin Tournoij | |
Otherwise it'll be in "" and "0, which is an unexpected side-effect IMHO. | |||
2017-11-22 | Fix #988 - Support --fix-dry-run for ESLint by processing the JSON output | w0rp | |
2017-11-22 | Fix lambda and funcref chain values | w0rp | |
2017-11-22 | Add support for post-processing fixer output | w0rp | |
2017-11-22 | #988 Take --fix-dry-run away again, because it is dumb | w0rp | |
2017-11-22 | Fix #988 - Support --fix-dry-run for ESLint where available, and ↵ | w0rp | |
--fix-to-stdout for eslint_d | |||
2017-11-22 | Fix a bug with resetting pattern options when ALE is enabled again | w0rp | |
2017-11-22 | Support fixer aliases, and make prettier-eslint and prettier-standard just work | w0rp | |
2017-11-22 | #1095 Use --stdin-filepath where available for prettier-eslint | w0rp | |
2017-11-22 | #1095 - Use --stdin-filepath for prettier, where available | w0rp | |
2017-11-22 | Disable piping buffer data into commands for fixing files where needed | w0rp | |
2017-11-22 | Make fixing ignore empty output better | w0rp | |
2017-11-21 | Use some default regex for completion support in other filetypes | w0rp | |