Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-25 | Bugfix: python add blank lines (#1944) | Bert JW Regeer | |
* Don't add newlines when not a control statement for Python * Add test for accidental newline fix * Add docstring detection to avoid adding unnecessarily newlines * Add tests for docstring detection | |||
2018-09-20 | Merge pull request #1932 from rhysd/shfmt-default-indent | w0rp | |
shfmt: Use Vim's indent config as default indent width | |||
2018-09-19 | Merge pull request #1719 from elebow/auto-pipenv-option-for-python-linters | w0rp | |
Add python_[linter]_auto_pipenv options for python linters (fixes #1656) | |||
2018-09-19 | Add fixer for Go modules (#1873) | Martin Tournoij | |
* Add fixer for Go modules | |||
2018-09-19 | #1872 Remove extra carriage returns when fixing files on Windows | w0rp | |
2018-09-19 | Support both old (<0.7) and new Julia versions | Daniel Wennberg | |
Closes #1931 | |||
2018-09-19 | Merge pull request #1926 from gnustomp/master | w0rp | |
c#ParseCFlags: don't index empty list | |||
2018-09-19 | Merge pull request #1934 from meunierd/solargraph-stdio | w0rp | |
Support Solargraph stdio | |||
2018-09-18 | Merge pull request #1928 from felipesere/master | w0rp | |
To avoid blocking build tools, suspend ALE when suspending vim | |||
2018-09-18 | Stop tsserver from causing errors to be rendered redundantly | w0rp | |
2018-09-18 | Solargraph stdio | Devon Meunier | |
2018-09-18 | shfmt: Use Vim's indent config as default indent width | rhysd | |
2018-09-18 | add test for arguments with '--' | James Ye | |
2018-09-17 | Test that we CleanupEveryBuffer when vim supports it | Felipe Sere | |
2018-09-17 | Handle failing to connect to eslint_d | w0rp | |
2018-09-17 | Merge pull request #1927 from jparise/thrift-includes-default | w0rp | |
thrift: default thrift_thrift_includes to ['.'] | |||
2018-09-17 | #1794 - Handle LSP documentation content as a Dictionary | w0rp | |
2018-09-17 | Fix the Julia languagserver linter for Julia 0.7 | w0rp | |
2018-09-16 | thrift: default thrift_thrift_includes to ['.'] | Jon Parise | |
In a lint context, it's useful to assume that included files sit next to the current file by default. Users can still further customize this configuration variable to add more include paths. | |||
2018-09-15 | Add python_[linter]_auto_pipenv options for python linters (fixes #1656) | Eddie Lebow | |
When set to true, and the buffer is currently inside a pipenv, GetExecutable will return "pipenv", which will trigger the existing functionality to append the correct pipenv arguments to run each linter. Defaults to false. I was going to implement ale#python#PipenvPresent by invoking `pipenv --venv` or `pipenv --where`, but it seemed to be abominably slow, even to the point where the test suite wasn't even finishing ("Tried to run tests 3 times"). The diff is: diff --git a/autoload/ale/python.vim b/autoload/ale/python.vim index 7baae079..8c100d41 100644 --- a/autoload/ale/python.vim +++ b/autoload/ale/python.vim @@ -106,5 +106,9 @@ endfunction " Detects whether a pipenv environment is present. function! ale#python#PipenvPresent(buffer) abort - return findfile('Pipfile.lock', expand('#' . a:buffer . ':p:h') . ';') isnot# '' + let l:cd_string = ale#path#BufferCdString(a:buffer) + let l:output = systemlist(l:cd_string . 'pipenv --where')[0] + " `pipenv --where` returns the path to the dir containing the Pipfile + " if in a pipenv, or some error text otherwise. + return strpart(l:output, 0, 18) !=# "No Pipfile present" endfunction Using vim's `findfile` is much faster, behaves correctly in the majority of situations, and also works reliably when the `pipenv` command doesn't exist. | |||
2018-09-14 | Merge pull request #1906 from ngavalas/autocomplete-trigger-prefix | w0rp | |
fix non-. prefix triggers overfiltering results | |||
2018-09-14 | Merge pull request #1850 from rrosenblum/ruby_linters | w0rp | |
Update all Ruby linters to work consistently with bundler | |||
2018-09-14 | Test for bundle paths with spaces again | w0rp | |
2018-09-14 | Return only the unescaped executables from executable callbacks | w0rp | |
2018-09-14 | Adapt tests | Sascha Grunert | |
2018-09-12 | Update all Ruby linters to work consistently with bundler | Ryan Rosenblum | |
2018-09-12 | fix non-. prefix triggers overfiltering results | Nick Gavalas | |
2018-09-11 | fix tsserver className parsing | Nick Gavalas | |
2018-09-10 | Add support for Julia Language Server (#1894) | w0rp | |
2018-09-10 | Fixed NASM tests | Daniel Jones | |
2018-09-09 | Escape julia command + reorder table in README | Bartolomeo Stellato | |
2018-09-09 | Merge pull request #1897 from LEI/add-sqlfmt-fixer | w0rp | |
Add support for sqlfmt | |||
2018-09-09 | Merge pull request #1885 from dsifford/dsifford-fixer-uncrustify | w0rp | |
add uncrustify fixer for several languages | |||
2018-09-08 | Try to fix CI | Bartolomeo Stellato | |
2018-09-08 | Add support for sqlfmt | LEI | |
2018-09-07 | #1888 Support names with minuses in Clojure and Lisp | w0rp | |
2018-09-07 | Fix julia escaping + minor edits | Bartolomeo Stellato | |
2018-09-07 | Added tests | Bartolomeo Stellato | |
2018-09-06 | Merge pull request #1883 from hsanson/add-solargraph-yml-to-root-path-search | w0rp | |
Add solargraph.yml file as root path search file. | |||
2018-09-06 | Add golangci-lint (#1890) | Sascha Grunert | |
2018-09-06 | #1891 Fix the go-langserver tests | w0rp | |
2018-09-06 | Merge pull request #1870 from hsanson/1822-add-go-langserver-support | w0rp | |
Fix #1822 - support go-langserver lsp. | |||
2018-09-06 | Fix #1866 - Handle empty output from Perl | w0rp | |
2018-09-06 | Fix #1822 - support go-langserver lsp. | Horacio Sanson | |
2018-09-04 | add uncrustify fixer for several languages | Derek P Sifford | |
2018-09-05 | Add solargraph.yml file as root path search file. | Horacio Sanson | |
Solargraph allows to set configuration options by creating a .solargraph.yml file at the root of the project using it. Therfore this file is a good canditate for finding ruby projects root paths. Initial discussion: https://github.com/w0rp/ale/issues/1874#issuecomment-418316168 | |||
2018-09-04 | Improve ALE project style checking | w0rp | |
* The project style linter now runs while you type. * Now the scripts for checking the project require blank lines. * Many style issues have been found and fixed. | |||
2018-09-04 | Merge pull request #1871 from Ophirr33/master | w0rp | |
added sbtserver linter | |||
2018-09-04 | Fix the dart language server command and cover it with tests | w0rp | |
2018-09-03 | #1875 Do not lint and so on when an operator is pending | w0rp | |