summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-12-07Add initial support for settings to overwrite ale shellHolden
2018-11-30Merge pull request #2110 from w0rp/lazy-clipboardv2.3.0Ryan
Optimize :ALEIntoToClipboard to only copy to clipboard once
2018-11-30Merge pull request #1734 from sridhars/masterRyan
Add language server source in ALEDetail
2018-11-29Merge branch 'master' into sridharsBjorn Neergaard
2018-11-29Add test for detail in lsp ReadDiagnosticsBjorn Neergaard
2018-11-29Use single quotes to satisfy vintBjorn Neergaard
2018-11-29Only set the unnamed register at the end of :ALEInfoToClipboardBjorn Neergaard
This fixes performance problems in Neovim, where every character results in spawning a new clipboard-tool process. Behaviour is not similarly pathological in Vim, but it still results in an unnecessary amount of register churn.
2018-11-28Merge pull request #2096 from mgedmin/flake8-uses-vcolsw0rp
flake8 reports visual columns
2018-11-26Merge pull request #2104 from andys8/patch-1w0rp
Readme: Links for tsserver and cargo
2018-11-25Readme: Links for tsserver and cargoAndy
2018-11-25Merge pull request #2103 from bfredl/nsw0rp
Don't hardcode the namespace id for virtual text
2018-11-25Fixing linter problemsw0rp
2018-11-25Don't hardcode the namespace id for virtual textBjörn Linse
This makes collisions with other plugins less likely.
2018-11-23php: change phpstan's --errorFormat to --error-format (#2005)lfree
* php: change phpstan's --errorFormat to --error-format * add version check to phpstan
2018-11-22Fix unit testsMarius Gedminas
2018-11-22flake8 reports visual columnsMarius Gedminas
Fixes #2092.
2018-11-21Merge pull request #2068 from m-pilia/ispcw0rp
Add linter for ispc
2018-11-21Add --nowrap to ispc optionsMartino Pilia
2018-11-19Merge pull request #2070 from meain/fixer-prettier-yamlw0rp
add yaml to registry for prettier
2018-11-19Fix #2084 - Disable mix by default, as it causes too many problemsw0rp
2018-11-19Merge pull request #2083 from zackhsi/scalac-until-jvmw0rp
Continue scalac compilation until just before bytecode generation
2018-11-19Merge pull request #2087 from m-pilia/adaw0rp
Add GCC linter for Ada
2018-11-18Add GCC linter for AdaMartino Pilia
2018-11-17Fix testZack Hsi
2018-11-17Merge pull request #1907 from guill/compile_commands_fixw0rp
Fix bug where last C compile flag was ignored
2018-11-17Fix bug where last c flag was ignoredJacob Segal
There is currently a check that tries to prevent c-flags that contain '-' in them from being unintentionally split and included in the list of commands. For example, we wouldn't want "-fno-exceptions " to appear as "-fno" and "-exceptions ". The way this check was done was by making sure the last character of the split string was a space. This meant that the very last option to appear in the compile command was ignored (as it doesn't end with a space). This fix explicitly skips the ends-with-space check on the last option in the command-line. This isn't the best fix. Really we should be using the same argument-processing rules as a shell would rather than just splitting on '-'. That's a much larger and more complicated change though.
2018-11-16Continue scalac compilation until just before bytecode generationZack Hsi
Previous behavior does not compile deep enough to surface errors. See compiler phases: https://docs.scala-lang.org/overviews/compiler-options/index.html#compilation-phases
2018-11-15Merge pull request #2079 from jeffkreeftmeijer/vale-asciidocw0rp
Add Vale linter for AsciiDoc
2018-11-14Add Vale linter for AsciiDocJeff Kreeftmeijer
Vale supports AsciiDoc. This patch adds a Vale linter for AsciiDoc files, which is based on the existing Markdown linter.
2018-11-14Add style highlights for virtualtext and document all of themw0rp
2018-11-14Add specific highlight groups for virtualtext (#2071)jamestthompson3
2018-11-12Merge pull request #2069 from meain/fixer-prettier-html-testsw0rp
add tests for prettier-html
2018-11-12add yaml to registry for prettierAbin Simon
2018-11-12add tests for prettier-htmlAbin Simon
2018-11-12Lint ispc on disk to solve include imprecisionsMartino Pilia
2018-11-11Add linter for ispcMartino Pilia
2018-11-11Merge pull request #2063 from languitar/better-checkstylew0rp
Checkstyle improvements
2018-11-11Merge pull request #2060 from meain/fixer-pretty-htmlw0rp
Add prettier to html formatters
2018-11-11Fix #2054 - Make golint configurablew0rp
2018-11-11Merge pull request #2056 from luan/virtualtextw0rp
Add support for nvim's virtualtext on cursor
2018-11-10Merge pull request #2059 from jparise/test-elixir-pathsw0rp
Remove test/command_callback/mix_paths/
2018-11-10Merge pull request #2053 from andreypopp/fix-ocamlformat-stdin-stdoutw0rp
Make ocamlformat work without temporary files
2018-11-10Fix #1960 - Do not fix files on :wqw0rp
2018-11-08Enable ESLint for Vue files by defaultw0rp
2018-11-07Let checkstyle only lint original filesJohannes Wienke
Temporary files break checks like the one for a missing package-info.java, as discussed in #1305.
2018-11-07Support older checkstyle versionsJohannes Wienke
The output format used by older checkstyle versions differs from the one of new versions. This commit adds a second parsing iteration on the output lines with a suitable pattern to support both versions in parallel. Due to the differences in the order of matching groups this is hard to achieve in a single pass through the output lines. An appropriate test case is added.
2018-11-06Fix info textLuan Santos
Removed ale_virualtext_prefix from debugging since it's not requried for the functionality to work. Sorted debugging info to make the list easier to navigate/diff.
2018-11-06Document ale_virtualtext_delayLuan Santos
2018-11-06Move virtualtext handling to own fileLuan Santos
This allows cursor and virtualtext to be independently autoloaded.
2018-11-07Add prettier to html formattersAbin Simon