Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-17 | Merge pull request #1925 from elebow/fix-markdown-error-in-readme-solargraph | w0rp | |
Fix markdown error in README solargraph entry | |||
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-16 | To avoid blocking build tools, suspend ALE when suspending vim | Felipe Sere | |
2018-09-16 | c#ParseCFlags: don't index empty list | James Ye | |
2018-09-15 | Fix markdown error in README solargraph entry | Eddie Lebow | |
2018-09-15 | Add `python_auto_pipenv` config var for all python linters. | Eddie Lebow | |
This allows a user to set one variable instead of eight. | |||
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-15 | Update prospector tool url in README | fenuks | |
2018-09-14 | Merge pull request #1921 from rrosenblum/ruby_linters | w0rp | |
Fix bug with RuboCop linter when options are not set | |||
2018-09-14 | Add tests for assuring the SCSS stylelint options work | jpsouzasilva | |
2018-09-14 | Fix bug with RuboCop linter when options are not set | Ryan Rosenblum | |
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 | #1889 Add support for automatically previewing messages based on the cursor ↵ | w0rp | |
position | |||
2018-09-14 | Merge pull request #1919 from saschagrunert/patch-1 | w0rp | |
Change PCRE escape to simple escape | |||
2018-09-14 | Adapt tests | Sascha Grunert | |
2018-09-14 | Change PCRE escape to simple escape | Sascha Grunert | |
2018-09-13 | Support options when using Stylelint with SCSS | jpsouzasilva | |
Complement missing documentation | |||
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 | Merge pull request #1905 from ngavalas/tsserver-classname-fix | w0rp | |
Fix tsserver `className` responses | |||
2018-09-11 | fix tsserver className parsing | Nick Gavalas | |
2018-09-10 | Add support for Julia Language Server (#1894) | w0rp | |
2018-09-10 | Merge pull request #1900 from McSwaggens/master | w0rp | |
Fixed NASM linter from outputting junk file | |||
2018-09-10 | Merge pull request #1899 from blueyed/typo | w0rp | |
doc: fix typo in ale-rust.txt | |||
2018-09-10 | Fixed NASM tests | Daniel Jones | |
2018-09-10 | Fixed NASM linter from outputting junk file | Daniel Jones | |
2018-09-09 | doc: fix typo in ale-rust.txt | Daniel Hahler | |
[ci skip] | |||
2018-09-09 | Added julia to the list in ale-support docs | Bartolomeo Stellato | |
2018-09-09 | Updated readme | Bartolomeo Stellato | |
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 | Fix other warnings | Bartolomeo Stellato | |
2018-09-08 | Try to fix CI | Bartolomeo Stellato | |
2018-09-08 | Add support for sqlfmt | LEI | |
2018-09-07 | really fix lint errors | Derek P Sifford | |
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-07 | Added various files to integrate julia. Still not working. | Bartolomeo Stellato | |
2018-09-06 | fix lint test failures | Derek P Sifford | |
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 | Fix #1800 - Enable non-blocking writes where available | w0rp | |
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. |