Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-10 | Explain the .* .gitignore rule | w0rp | |
2018-12-10 | #1520 - Add an :ALEDocumentation for tsserver | w0rp | |
2018-12-07 | Add support for Pod based SwiftLint (#2122) | Gordon Fontenot | |
It's common to add SwiftLint as a CocoaPod dependency, instead of as a global binary. In this case we should use that version of SwiftLint before looking for any others. Note that I'm also adding support for SwiftLint in ReactNative projects here as well, where the Pods directory would be nested inside an ios directory. | |||
2018-12-06 | Merge pull request #2061 from hsanson/1910-add-support-for-bibclean-fixer | w0rp | |
Add bibclean fixer support | |||
2018-12-06 | Add support for pydocstyle linter (#2085) | pmacosta | |
The linter can correctly parse pydocstyle output with any of the following command-line options enabled: --explain, --source, --debug, and/or --verbose | |||
2018-12-06 | refactor sasslint linter (#2077) | Oskar Grunning | |
Previous implementation required one to have sass-lint globally. This allows you to have it locally, override the executable and add options. | |||
2018-12-05 | Merge pull request #2119 from hsanson/1994-fix-javalsp-support | w0rp | |
Fix javalsp command. | |||
2018-12-05 | Fix javalsp command. | Horacio Sanson | |
The command used to invoke the LSP process was being escaped wrong. Also added a new option to set a different java executable and fixed the documentation. | |||
2018-12-04 | Merge pull request #2117 from gitter-badger/gitter-badge | w0rp | |
Add a Gitter chat badge to README.md | |||
2018-12-04 | Add Gitter badge | The Gitter Badger | |
2018-12-04 | Make the suggestion about asking for help friendlier | w0rp | |
2018-12-04 | Do not wrap bug report lines | w0rp | |
2018-12-04 | Fix a mistake with a link | w0rp | |
2018-12-03 | Revert "Merge pull request #2083 from zackhsi/scalac-until-jvm" | w0rp | |
This reverts commit 1c89495d771ec6518599bea83dd11a7c1d66ba73, reversing changes made to 4b4b09593b2b090282981d69a9647a3c91d1f8b9. | |||
2018-12-03 | Typo | w0rp | |
2018-12-03 | Tell people to ask for tech support outside of GitHub issues | w0rp | |
2018-12-01 | Add bibclen fixer support | Horacio Sanson | |
Closes #1910 | |||
2018-11-30 | Merge pull request #2110 from w0rp/lazy-clipboardv2.3.0 | Ryan | |
Optimize :ALEIntoToClipboard to only copy to clipboard once | |||
2018-11-30 | Merge pull request #1734 from sridhars/master | Ryan | |
Add language server source in ALEDetail | |||
2018-11-29 | Merge branch 'master' into sridhars | Bjorn Neergaard | |
2018-11-29 | Add test for detail in lsp ReadDiagnostics | Bjorn Neergaard | |
2018-11-29 | Use single quotes to satisfy vint | Bjorn Neergaard | |
2018-11-29 | Only set the unnamed register at the end of :ALEInfoToClipboard | Bjorn 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-28 | Merge pull request #2096 from mgedmin/flake8-uses-vcols | w0rp | |
flake8 reports visual columns | |||
2018-11-26 | Merge pull request #2104 from andys8/patch-1 | w0rp | |
Readme: Links for tsserver and cargo | |||
2018-11-25 | Readme: Links for tsserver and cargo | Andy | |
2018-11-25 | Merge pull request #2103 from bfredl/ns | w0rp | |
Don't hardcode the namespace id for virtual text | |||
2018-11-25 | Fixing linter problems | w0rp | |
2018-11-25 | Don't hardcode the namespace id for virtual text | Björn Linse | |
This makes collisions with other plugins less likely. | |||
2018-11-23 | php: change phpstan's --errorFormat to --error-format (#2005) | lfree | |
* php: change phpstan's --errorFormat to --error-format * add version check to phpstan | |||
2018-11-22 | Fix unit tests | Marius Gedminas | |
2018-11-22 | flake8 reports visual columns | Marius Gedminas | |
Fixes #2092. | |||
2018-11-21 | Merge pull request #2068 from m-pilia/ispc | w0rp | |
Add linter for ispc | |||
2018-11-21 | Add --nowrap to ispc options | Martino Pilia | |
2018-11-19 | Merge pull request #2070 from meain/fixer-prettier-yaml | w0rp | |
add yaml to registry for prettier | |||
2018-11-19 | Fix #2084 - Disable mix by default, as it causes too many problems | w0rp | |
2018-11-19 | Merge pull request #2083 from zackhsi/scalac-until-jvm | w0rp | |
Continue scalac compilation until just before bytecode generation | |||
2018-11-19 | Merge pull request #2087 from m-pilia/ada | w0rp | |
Add GCC linter for Ada | |||
2018-11-18 | Add GCC linter for Ada | Martino Pilia | |
2018-11-17 | Fix test | Zack Hsi | |
2018-11-17 | Merge pull request #1907 from guill/compile_commands_fix | w0rp | |
Fix bug where last C compile flag was ignored | |||
2018-11-17 | Fix bug where last c flag was ignored | Jacob 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-16 | Continue scalac compilation until just before bytecode generation | Zack 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-15 | Merge pull request #2079 from jeffkreeftmeijer/vale-asciidoc | w0rp | |
Add Vale linter for AsciiDoc | |||
2018-11-14 | Add Vale linter for AsciiDoc | Jeff Kreeftmeijer | |
Vale supports AsciiDoc. This patch adds a Vale linter for AsciiDoc files, which is based on the existing Markdown linter. | |||
2018-11-14 | Add style highlights for virtualtext and document all of them | w0rp | |
2018-11-14 | Add specific highlight groups for virtualtext (#2071) | jamestthompson3 | |
2018-11-12 | Merge pull request #2069 from meain/fixer-prettier-html-tests | w0rp | |
add tests for prettier-html | |||
2018-11-12 | add yaml to registry for prettier | Abin Simon | |
2018-11-12 | add tests for prettier-html | Abin Simon | |