summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2019-11-08Add documentation for ale-symbols featureDonnie West
2019-10-29Merge pull request #2690 from iclanzan/purtyw0rp
Add purty fixer for PureScript
2019-10-29Merge pull request #2819 from greg0ire/psalm_extra_optionsw0rp
Add the possiblity to add extra psalm options
2019-10-28Fix the test issues with html-beautifyw0rp
2019-10-28Add 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-18Mention the disabled option for message severityw0rp
2019-10-18Adding 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-17Add support for nimlsp (#2815)Jerko Steiner
* Add support for nimlsp.vim * Add test and docs for nimlsp * Add nimlsp to supported-tools.md * Add nimlsp to doc/ale-supported-languages-and-tools.txt
2019-10-14Merge pull request #2803 from diegosouza/update_highest_phpstan_levelw0rp
Update highest phpstan level
2019-10-13Fix TCP server config example.Ryan Roden-Corrent
The docs for the `address` parameter of `Define` say: > This argument must only be set if the `lsp` argument > is set to `'socket'`.
2019-10-07Add the possiblity to add extra psalm optionsGrégoire Paris
2019-10-07Clarify that virtualtext is only in NeoVimw0rp
2019-10-07Merge pull request #2814 from ↵w0rp
andys8/improvement/elm-ls-name-fix-in-documentation elm-ls: Removed some leftovers of previous name
2019-10-07Merge pull request #2750 from ↵w0rp
andys8/improvement/elm-language-server-elm-analyse-trigger-param Elm language server params update
2019-10-07Merge pull request #2735 from zoonfafer/scala-metalsw0rp
Add linter for Scala Metals
2019-10-07Merge pull request #2676 from davidtwco/nixfmt-fixerw0rp
Add nixpkgs-fmt fixer.
2019-10-07Merge pull request #2694 from elebow/add-ruby-debridew0rp
Add ruby debride (closes #2471)
2019-10-06elm-ls: Removed some leftovers of previous nameandys8
Plugin name is `elm-ls` Project page: <https://github.com/elm-tooling/elm-language-server>
2019-10-02highest phpstan level in doc updatedDiego Mendes
2019-09-25569 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-22Merge pull request #2683 from ahayworth/ahayworth-add-ink-lspw0rp
Add support for ink-language-server
2019-09-22Merge pull request #2667 from Chris-Slade/masterw0rp
Edit ale-cs-csc docs to remove typos
2019-09-20Close #2641 - Document how to add your own LSP lintersw0rp
2019-09-19Close #2764 - Support the new React filetypes with aliasesw0rp
2019-09-19Document and test solcw0rp
2019-09-14Adding linting for rmd filetype (duplicate of rmarkdown)statquant
2019-09-12Merge pull request #2696 from elebow/update-test-docs-for-linter-listsw0rp
Update test docs and output for linter tables checked
2019-09-12feat: support sqlformat. (#2702)Cluas
* feat: support sqlformat.
2019-09-12Add 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-12languagetools: stop auto-appending --autoDetect (#2616)Samuel Roeca
Options are now configurable for languagetools, and `--autoDetect` can be removed by changing the options.
2019-09-10dfmt support (#2662)theoremoon
* Add support for `dfmt`
2019-09-04Elm language server params updateandys8
* There is a new param 'elmAnalyseTrigger' (change|save|never) * Empty path default to let the language server search for binary
2019-09-01Make help text clearer for line number highlightsw0rp
2019-09-01Add 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-08-31Add linter for Scala MetalsJeffrey Lau
https://scalameta.org/metals/
2019-08-26Add 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-18Merge remote-tracking branch 'AlexeiDrake/master' into ↵w0rp
bugfix/c-lsp-build-dir-settings
2019-08-18Merge pull request #2631 from timlag1305/feat/ada-gnatppw0rp
Add gnatpp fixer for Ada
2019-08-17Add asyncomplete.vim Support (#2627)Donnie West
2019-08-13Update test docs and output for linter tables checkedEddie Lebow
This makes some of the run-test output less misleading. Also fix a minor shellcheck issue: "\*" and "\\*" are equivalent, but the second one makes clear that the literal backslash is intentional.
2019-08-13Correct copied typo in doc/ale-rubyEddie Lebow
2019-08-13debride: Add debride linter (closes #2471)Eddie Lebow
2019-08-12Add purty fixer.Sorin Iclanzan
2019-08-07Add support for ink-language-serverAndrew Hayworth
This commit add support for ink-language-server, which it does by largely copying and pasting from the pure-language-server PR that was merged recently. The most interesting things to note are: - ink-language-server is distributed upstream via npm, which is why we search through node_modules - With some coaxing, it can be installed globally - which is why we search for a global binary. - Ink is a funky language, and users will likely need to add initialization options. - I am not incredibly familiar with vimscript; and I may not have done some of the buffer searching correctly.
2019-08-02Fix #2668 - Set g:ale_go_go111modulew0rp
2019-07-30Merge pull request #2430 from eliath/masterw0rp
Support $GO111MODULE with Go tooling
2019-07-30Edit ale-cs-csc docsChris-Slade
Edits the ale-cs-csc docs to remove typos, misspellings, and run-on sentences.
2019-07-29Add setting for numhl highlights (#2637)JINNOUCHI Yasushi
* Add setting for numhl highlights * Add doc for numhl feature
2019-07-29Merge pull request #2612 from andys8/feature/elm-language-server-updatew0rp
Update elm-ls
2019-07-29Update links to use the new GitHub organizationw0rp