Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-22 | Fixes an index error with Java files. (#3706) | Stefan Braun | |
Co-authored-by: w0rp <w0rp@users.noreply.github.com> | |||
2021-03-01 | Close #2281 - Separate cwd commands from commands | w0rp | |
Working directories are now set seperately from the commands so they can later be swapped out when running linters over projects is supported, and also better support filename mapping for running linters on other machines in future. | |||
2020-09-30 | Add maven helper file; use maven wrapper if available instead of global ↵ | fenuks | |
'mvn' executable | |||
2020-05-19 | refactor(javac): ale_java_javac_sourcepath variable defaults to String | NiBo | |
2020-05-19 | refactor(javac): ale_java_javac_classpath variable supports String and List ↵ | NiBo | |
types | |||
2020-05-19 | refactor(javac): ale_java_javac_sourcepath variable supports String and List ↵ | NiBo | |
types | |||
2020-05-15 | style(javac): Code formatting | NiBo | |
2020-05-15 | feat(javac): Add java_javac_sourcepath variable | NiBo | |
This variable can set multiple source code paths, the source code path is a relative path (relative to the project root directory) | |||
2019-06-03 | Feature/add ant support (#2539) | Andrew Lee | |
Use ant files to load Java settings too. | |||
2019-05-08 | Merge pull request #2134 from oaue/master | w0rp | |
javac linter: fix handling of error messages containing ':' character | |||
2019-04-07 | #2132 - Replace command_chain and chain_with with ale#command#Run | w0rp | |
2019-03-06 | Merge pull request #2305 from campbellr/master | w0rp | |
javac: Don't assume src/main/java always exists | |||
2019-03-03 | javac: Don't assume src/main/java always exists | Ryan Campbell | |
Some projects I have only have src/test/java (no /src/main/java), which seemed to break some incorrect assumptions the linter had. | |||
2019-02-22 | #2132 - Replace all uses of foo_callback with foo | w0rp | |
2019-01-26 | #2132 Unify temporary file management in command.vim | w0rp | |
2018-12-09 | javac linter: fix handling of error messages containing ':' character | David LANDREAU | |
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-08-02 | Simplify the code for most linters and tests with closures | w0rp | |
2018-07-15 | Massively reduce the amount of code needed for linter tests | w0rp | |
2018-04-08 | Close #1476 - Make the javac executable configurable | w0rp | |
2017-11-20 | Fix #859 Include test and jaxb Java source paths when available | w0rp | |
2017-11-05 | Fix #1061 - Handle the filenames returned by javac | w0rp | |
2017-08-29 | Gradle support for javac | Brayden Banks | |
Based off of #745. | |||
2017-08-08 | Ban use of ==# or ==? in the codebase, and prefer is# or is? instead | w0rp | |
2017-06-19 | handle column number in javac linter (#660) | oaue | |
* handle column number in javac linter * Updated tests with column number for javac errors. * Updated tests with column number for javac errors. | |||
2017-05-28 | Revert "Fix #501 - Do not run javac when it is just a stub asking you to ↵ | w0rp | |
install Java on Mac OSX" This reverts commit 528355e2c6cf64fbc0d459a7a512a7823f90043d. | |||
2017-05-12 | #549 Temporarily revert shell escaping changes, just for Windows | w0rp | |
2017-05-08 | #540 Fix shell escaping pretty much everywhere | w0rp | |
2017-05-04 | #502 Parse more undefined symbol errors | w0rp | |
2017-05-04 | Fix #502 - Report undefined symbol errors better for javac | w0rp | |
2017-05-04 | Fix #501 - Do not run javac when it is just a stub asking you to install ↵ | w0rp | |
Java on Mac OSX | |||
2017-04-25 | Fixes #361, fixes #417 Get classpaths from Maven, and automatically detect ↵ | w0rp | |
src/main/java paths | |||
2017-04-18 | Add a function for getting matches, and use it to simplify a lot of code | w0rp | |
2017-04-16 | #427 Implement buffer variable overrides for all linter options | w0rp | |
2017-03-31 | Fix #438 Create Java .class files for javac in a temporary directory | w0rp | |
2017-03-30 | Remove 'col' from linters where it is hardcoded to 1 (#434) | Adriaan Zonnenberg | |
* Remove 'col' from linters where it is hardcoded to 1 When 'col' is 1, the first column will get highlighted for no reason. It should be 0 (which is the default). In the scalac linter there was also a check about the outcome of `stridx`. It would set l:col to 0 if it was -1, and then it uses `'col': l:col + 1` to convert the outcome of `stridx` to the actual column number. This will make 'col' equals 1 when there is no match. We can remove the check because `-1 + 1 = 0`. * Remove outdated comments about vcol vcol was added as a default, and the loclists that follow these comments do not contain 'vcol' anymore | |||
2017-02-26 | Copy all loclist items returned from handlers, and set up defaults for ↵ | w0rp | |
convenience | |||
2017-02-11 | Fix the custom check issue. | w0rp | |
2017-02-11 | Make javac work in a basic way | w0rp | |
2017-02-11 | Added support for javac (with eclipse classpath support for now) (#141) | Valentin Finini | |
* A try at javac support for ALE * Small cleanup: moved '/tmp/java_ale' string into script var * Fixed Travis-CI build failing on autocmd not being in augroup and stupid omission * One more fix for Travis-CI * For some reason, expandtab was not set * Indentation and removal of header guard. Used examples from ale_linters/c/gcc.vim and ale_linters/javascript/eslint.vim for the indentation of string concat blocks. |