Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-08 | Add scriptencoding to `completion.vim` | Donnie West | |
2019-11-08 | Allow the user to set their own completion values | Donnie West | |
2019-11-07 | Switch from style to transformers (#2838) | Thibault Vatter | |
* Switch to transformers for styler * Adapt unit test too | |||
2019-10-29 | Merge pull request #2690 from iclanzan/purty | w0rp | |
Add purty fixer for PureScript | |||
2019-10-28 | Fix the test issues with html-beautify | w0rp | |
2019-10-28 | Add support for html-beautify (#2788) | Hugo Osvaldo Barrera | |
* Add support for html-beautify * Add html-beautify to the list of supported tools * Update docs | |||
2019-10-28 | fixers/stylelint: enhance `stylelint` fixer (#2745) | Charlie Johnson | |
* Refactor stylelint fixer test * Support additional stylelint fixer options * Support changing working directory for stylelint fixer * Force css syntax for stylelint fixer | |||
2019-10-21 | Fix #2835 - Bump up the sign group version check for NeoVim | w0rp | |
2019-10-18 | Mention the disabled option for message severity | w0rp | |
2019-10-18 | Adding support for LSP `window/showMessage` method (#2652) | Andre Souto | |
* Added base handling for window/showMessage * Ignoring severity log * Code formatting * Added user configurable severity * Preferring ale#util#ShowMessage over echo'ing directly * Using format similar to ale_echo_msg_format for consistency * Updating docs * Added LSP log config string; improved tests * Use warning as fallback for incorrect user config | |||
2019-10-18 | Merge pull request #2845 from DonnieWest/fixItemDetailsOnEmptySource | w0rp | |
Fix tsserver not returning details for items with empty source | |||
2019-10-17 | Fix tsserver not returning details for items with empty source | Donnie West | |
2019-10-17 | Allow code actions to work on callback based sources | Donnie West | |
2019-10-16 | Bump the ALE versionv2.6.0 | w0rp | |
2019-10-09 | Fix #2800 - Ignore completion user data which is not a dictionary | w0rp | |
2019-10-07 | Merge pull request #2676 from davidtwco/nixfmt-fixer | w0rp | |
Add nixpkgs-fmt fixer. | |||
2019-10-04 | Fix sign parser to be language independent. | Horacio Sanson | |
2019-09-25 | 569 support vim sign group and priority (#2786) | Horacio Sanson | |
* Use sign-group only on supported vim versions. The sign-group feature is only available in nvim 0.4.0 and vim 8.1.614. * Add priority to ALE signs. This allows users to set a priority to ALE signs to take precedence over other plugin signs. | |||
2019-09-20 | Merge pull request #2736 from zoonfafer/doc-typos | w0rp | |
doc: Fix typos | |||
2019-09-20 | Fix #2744 - Make ALEFix work when only casing is changed | w0rp | |
2019-09-20 | Show description of autoimport action for tsserver | Jerko Steiner | |
2019-09-19 | Close #2764 - Support the new React filetypes with aliases | w0rp | |
2019-09-19 | Fix #2711 - Fix writing to files on save | w0rp | |
2019-09-19 | `arguments` needs to be handled for `compile_commands.json` in addition to ↵ | Mo Zhonghua | |
`command` (#2123) * c linter: compatible with compile_commands.json without command field | |||
2019-09-14 | Adding linting for rmd filetype (duplicate of rmarkdown) | statquant | |
2019-09-12 | feat: support sqlformat. (#2702) | Cluas | |
* feat: support sqlformat. | |||
2019-09-12 | Add ALERename (tsserver & LSP), ALEOrganizeImports (tsserver) and auto ↵ | Jerko Steiner | |
import support (tsserver) (#2709) This commit adds support for renaming symbols in tsserver and with LSP tools, and for organising imports with tsserver. Completion results for symbols that can be imported are now suggested if enabled for tsserver completion done via ALE. | |||
2019-09-12 | Merge pull request #2695 from elebow/move-ruby-escape-executable | w0rp | |
Move ale#handlers#ruby#EscapeExecutable to ale#ruby#EscapeExecutable | |||
2019-09-12 | languagetools: stop auto-appending --autoDetect (#2616) | Samuel Roeca | |
Options are now configurable for languagetools, and `--autoDetect` can be removed by changing the options. | |||
2019-09-11 | Fix #2760 - Ignore all errors for adding NeoVim highlights | w0rp | |
2019-09-10 | dfmt support (#2662) | theoremoon | |
* Add support for `dfmt` | |||
2019-09-01 | Add g:ale_sign_highlight_linenr (#2678) | BlahGeek | |
* add g:ale_sign_highlight_linenr * Fix tests. Change option default value * Rename ale_sign_highlight_linenr to ale_sign_highlight_linenrs * Default ale_sign_highlight_linenrs to 0 | |||
2019-09-01 | Merge pull request #2638 from frangio/nvim-highlight | w0rp | |
Use Neovim API for highlights when available | |||
2019-08-28 | doc: Fix typos | Jeffrey Lau | |
2019-08-26 | Add nixpkgs-fmt fixer. | David Wood | |
This commit adds a fixer for the Nix language, nixpkgs-fmt (https://github.com/nix-community/nixpkgs-fmt). | |||
2019-08-18 | Merge remote-tracking branch 'AlexeiDrake/master' into ↵ | w0rp | |
bugfix/c-lsp-build-dir-settings | |||
2019-08-18 | Black fixer should include --pyi for files with .pyi extension (#2705) | richyfish | |
* black fixer should include --pyi for files with .pyi extension | |||
2019-08-18 | Merge pull request #2631 from timlag1305/feat/ada-gnatpp | w0rp | |
Add gnatpp fixer for Ada | |||
2019-08-17 | Keep cursor position on screen when opening/closing lists (#2632) | Andre Souto | |
* Trying to keep win view from bouncing * Adjusting when views are saved and restored * Also restore view when closing quickfix * Don't restore view when opening list vertically | |||
2019-08-17 | Fix cflags parsing (#2510, #2265) (#2590) | fx-carton | |
* Parse CFLAGS that can be passed using a whitelist I went through GCC's man page and selected flags that can safely be passed to GCC and that can be useful to syntax checking. These include: - -I/-i* include flags - preprocessor flags such as -D - -W* warning flags - -O* optimization flags - most -f options - -m arch dependent options * Fix CFLAGS tests: -Idir is now parsed to -I dir * Added two tests for flags we want or don't want to pass. * Also check for / in addition to s:sep | |||
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 | |