Adding new stuff

This commit is contained in:
Viktor Barzin 2017-10-08 12:00:02 +01:00
parent 39ee792ad4
commit a410da0e04
722 changed files with 331 additions and 189 deletions

View file

@ -0,0 +1,16 @@
*vim-groovy-complete.html*
Groovy Code Completion
**********************
Groovy code completion uses the standard Vim code completion mechanism
(vim-code_completion) like so:
>
list = ['foo', 'bar', 'baz']
list.s<C-X><C-U>
<
vim:ft=eclimhelp

View file

@ -0,0 +1,9 @@
*vim-groovy-index.html*
Groovy
******
- Groovy Code Completion (vim-groovy-complete)
- Groovy Validation (vim-groovy-validate)
vim:ft=eclimhelp

View file

@ -0,0 +1,35 @@
*vim-groovy-validate.html*
*:Validate_groovy*
Groovy Validation
*****************
When saving a groovy source file that resides in a project, eclim will
update that source file in Eclipse and will report any validation
errors found. Any errors will be placed in the current window's
location list (:help location-list) and the corresponding lines in the
source file will be marked via Vim's :sign functionality with '>>'
markers in the left margin.
Automatic validation of groovy source files can be disabled via the
g:EclimGroovyValidate variable (described below). If you choose to
disable automatic validation, you can still use the :Validate command
to manually validate the current file.
Configuration
=============
Vim Settings (vim-settings)
*g:EclimGroovyValidate*
- g:EclimGroovyValidate (Default: 1) - If set to 0, disables source
code validation.
- g:EclimValidateSortResults (Default: 'occurrence') - If set to
'severity', the validation results will be sorted by severity
(errors > warnings > info > etc.)
vim:ft=eclimhelp