Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-17 | Add asyncomplete.vim Support (#2627) | Donnie West | |
2019-08-13 | Move ale#handlers#ruby#EscapeExecutable to ale#ruby#EscapeExecutable | Eddie Lebow | |
This function is generally applicable to Ruby, not just handling linter output. | |||
2019-08-12 | Add purty fixer. | Sorin Iclanzan | |
2019-08-12 | aleinfo global options (#2686) | richyfish | |
* added omitted global variables which was breaking this test when run standalone * invert logic for s:GetLinterVariables excluding disabled linters, so that linter global options can appear in output * additional tests for s:GetLinterVariables for linter global options | |||
2019-07-30 | Merge pull request #2430 from eliath/master | w0rp | |
Support $GO111MODULE with Go tooling | |||
2019-07-30 | Merge pull request #2646 from paulreimer/fixer-clangformat-use-assume-filename | w0rp | |
Set --assume-filename for clangformat fixer | |||
2019-07-29 | Add setting for numhl highlights (#2637) | JINNOUCHI Yasushi | |
* Add setting for numhl highlights * Add doc for numhl feature | |||
2019-07-19 | Set --assume-filename for clangformat fixer | Paul Reimer | |
2019-07-14 | Merge pull request #2601 from delphinus/feature/better-completion-for-deoplete | w0rp | |
Show more candidates for Deoplete completion | |||
2019-07-13 | Add Sorbet ruby linter and fixer (#2614) | Matthew Lanigan | |
2019-07-10 | Try to mock nvim api functions | Francisco Giordano | |
2019-07-09 | Implement highlights using neovim API | Francisco Giordano | |
2019-07-02 | Fix incorrect re-selection (#2630) | Pete Beardmore | |
ALE now only resets selections when needed, to prevent side effects. | |||
2019-07-02 | Add clangtidy fixer (#2548) | ObserverOfTime | |
* Add clangtidy fixer * Add extra_options to clangtidy fixer * Also, use cpp variables in cpp filetypes | |||
2019-07-01 | Add gnatpp fixer for Ada | Tim Lagnese | |
2019-07-01 | Support $GO111MODULE with Go tooling | Elias Martinez Cohen | |
Allows the user to override $GO111MODULE environment variable through ale options. This gives control over the default behavior of Go module resolution. Golang documentation: https://github.com/golang/go/wiki/Modules#how-to-use-modules Add `ale#Go#EnvString()` function to make it easy to add similar Go environment variables in the future. Use the new `EnvString` function in all available Go tools callbacks & update tests Also add test of linter command callback for `gofmt` | |||
2019-06-25 | Use input_patterns & add comments for updating it | delphinus | |
2019-06-19 | Add separated func for deoplete | delphinus | |
Deoplete needs `get_complete_position` method and it has a different signature. It already fetches the input string and attempts to detect the position with `\k*` regexp patterns. | |||
2019-06-18 | Enable C++ autocompletion on '::' and '->' | Parker Snell | |
2019-06-13 | Merge pull request #2563 from dcyriller/fixer-prettier-glimmer | w0rp | |
prettier: Support experimental languages (Handlebars) | |||
2019-06-13 | Refactor to be less verbose | Cyrille David | |
2019-06-10 | Bump the ALE versionv2.5.0 | w0rp | |
2019-06-10 | Fix #1727 - Replace previoulsy defined linters with matching names | w0rp | |
2019-06-10 | Lint on InsertLeave, not in insert mode by default | w0rp | |
b:ale_lint_on_insert_leave is now supported as tests need it. These defaults are saner and cause fewer issues for users by default. | |||
2019-06-10 | Merge pull request #2567 from theevocater/add_reorder_python_imports | w0rp | |
Add support for reorder-python-imports fixer | |||
2019-06-10 | Make rmarkdown files work with styler and lintr (#2564) | Thibault Vatter | |
* add R markdown as filetype for styler * Add rmarkdown as an alias for R | |||
2019-06-08 | Add support for reorder-python-imports fixer | Jake Kaufman | |
isort is great, but I've come to prefer reorder-python-imports. The tool has a focus on smaller diffs than isort. reorder-python-imports is also a little smarter than isort which is nice. | |||
2019-06-08 | Merge pull request #2253 from jj-kim/master | w0rp | |
Improve location list behavior on split windows of same buffer. | |||
2019-06-08 | Merge pull request #2559 from nerdrew/rust-cargo-rendered-detail | w0rp | |
show rendered cargo error in detail for clippy errors | |||
2019-06-08 | Merge pull request #2565 from Tharre/master | w0rp | |
Run xml linters on xsd and xslt files | |||
2019-06-08 | Merge pull request #2551 from laino/eslint-json | w0rp | |
Use JSON output for ESLint and fix tsserver column | |||
2019-06-06 | Run xml linters on xsd and xslt files | Tharre | |
Both xsd and xslt are by definition written in XML, and thus the same linter(s) can be run to check them for well-formedness. | |||
2019-06-06 | prettier: Support experimental languages | Cyrille David | |
Such as handlebars | |||
2019-06-05 | Fix #2525 - Convert Windows paths in a Unix environment | w0rp | |
2019-06-04 | show rendered cargo error in detail | Andrew Lazarus | |
2019-06-04 | Make ale_lint_on_save work with b:ale_fix_on_save = 1 | w0rp | |
2019-06-03 | Fix #1279 - Run cppcheck differently when modified | Christoph Koehler | |
cppcheck is now run without the --project option and from the buffer's directory instead when the buffer has been modified. Saving the buffer will get results by linting the project instead. | |||
2019-06-03 | Feature/add ant support (#2539) | Andrew Lee | |
Use ant files to load Java settings too. | |||
2019-06-03 | Fix #2555 - Remove highlights in lowercase, etc | w0rp | |
2019-06-02 | Use JSON output for eslint and fix tsserver column | Nils Kuhnhenn | |
2019-06-01 | Support custom LSP notifications | Martino Pilia | |
Allow to send custom notification mesages, that expect no response from the server. | |||
2019-05-31 | Refactor LSP custom request handling | Martino Pilia | |
2019-05-31 | Add API for custom LSP requests | Martino Pilia | |
Implement a function `ale#lsp_linter#SendRequest` that allows to send custom LSP requests to an enabled LSP linter. Resolves #2474 | |||
2019-05-30 | Fix #2544 - Completion positions are off by one | w0rp | |
2019-05-29 | Merge pull request #2540 from sijad/pgformatter | w0rp | |
add pgformatter fixer | |||
2019-05-28 | Fix #2438 - Print a friendly message when the clipboard is not available | w0rp | |
2019-05-28 | Fix #2535 - Automatically emit <C-x><C-o> less to prevent <C-o> issues | w0rp | |
2019-05-27 | fix neovim missing setbufline | Jacques Kvam | |
2019-05-27 | add pgformatter | Sajjad Hashemian | |
2019-05-22 | Add fix to HandleTSServerDiagnostics function. | Horacio Sanson | |