mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-22 08:45:42 +08:00
Update format
This commit is contained in:
parent
dba75d034d
commit
c104ba276e
@ -29,8 +29,10 @@ elseif executable('ag')
|
|||||||
" https://github.com/ggreer/the_silver_searcher
|
" https://github.com/ggreer/the_silver_searcher
|
||||||
let g:unite_source_grep_command = 'ag'
|
let g:unite_source_grep_command = 'ag'
|
||||||
let g:unite_source_grep_default_opts =
|
let g:unite_source_grep_default_opts =
|
||||||
\ '-i --line-numbers --nocolor --nogroup --hidden --ignore ' .
|
\ '-i --line-numbers --nocolor ' .
|
||||||
\ '''.hg'' --ignore ''.svn'' --ignore ''.git'' --ignore ''.bzr'''
|
\ '--nogroup --hidden --ignore ' .
|
||||||
|
\ '''.hg'' --ignore ''.svn'' --ignore' .
|
||||||
|
\ ' ''.git'' --ignore ''.bzr'''
|
||||||
let g:unite_source_grep_recursive_opt = ''
|
let g:unite_source_grep_recursive_opt = ''
|
||||||
elseif executable('pt')
|
elseif executable('pt')
|
||||||
" Use pt (the platinum searcher)
|
" Use pt (the platinum searcher)
|
||||||
@ -47,13 +49,15 @@ elseif executable('ack-grep')
|
|||||||
let g:unite_source_grep_recursive_opt = ''
|
let g:unite_source_grep_recursive_opt = ''
|
||||||
elseif executable('ack')
|
elseif executable('ack')
|
||||||
let g:unite_source_grep_command = 'ack'
|
let g:unite_source_grep_command = 'ack'
|
||||||
let g:unite_source_grep_default_opts = '-i --no-heading --no-color -k -H'
|
let g:unite_source_grep_default_opts = '-i --no-heading' .
|
||||||
|
\ ' --no-color -k -H'
|
||||||
let g:unite_source_grep_recursive_opt = ''
|
let g:unite_source_grep_recursive_opt = ''
|
||||||
elseif executable('jvgrep')
|
elseif executable('jvgrep')
|
||||||
" Use jvgrep
|
" Use jvgrep
|
||||||
" https://github.com/mattn/jvgrep
|
" https://github.com/mattn/jvgrep
|
||||||
let g:unite_source_grep_command = 'jvgrep'
|
let g:unite_source_grep_command = 'jvgrep'
|
||||||
let g:unite_source_grep_default_opts = '-i --exclude ''\.(git|svn|hg|bzr)'''
|
let g:unite_source_grep_default_opts =
|
||||||
|
\ '-i --exclude ''\.(git|svn|hg|bzr)'''
|
||||||
let g:unite_source_grep_recursive_opt = '-R'
|
let g:unite_source_grep_recursive_opt = '-R'
|
||||||
elseif executable('beagrep')
|
elseif executable('beagrep')
|
||||||
" Use beagrep
|
" Use beagrep
|
||||||
@ -101,9 +105,11 @@ BTW, the google's [java formatter](https://github.com/google/google-java-format)
|
|||||||
|
|
||||||
1. [javacomplete2](https://github.com/artur-shaik/vim-javacomplete2) - Updated javacomplete plugin for vim
|
1. [javacomplete2](https://github.com/artur-shaik/vim-javacomplete2) - Updated javacomplete plugin for vim
|
||||||
- Demo
|
- Demo
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
- Generics demo
|
- Generics demo
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
2. [deoplete.nvim](https://github.com/Shougo/deoplete.nvim) - Dark powered asynchronous completion framework for neovim
|
2. [deoplete.nvim](https://github.com/Shougo/deoplete.nvim) - Dark powered asynchronous completion framework for neovim
|
||||||
@ -113,6 +119,7 @@ BTW, the google's [java formatter](https://github.com/google/google-java-format)
|
|||||||
## Syntax lint
|
## Syntax lint
|
||||||
|
|
||||||
1. [neomake](https://github.com/neomake/neomake) - Asynchronous linting and make framework for Neovim/Vim
|
1. [neomake](https://github.com/neomake/neomake) - Asynchronous linting and make framework for Neovim/Vim
|
||||||
|
|
||||||
I am maintainer of javac maker in neomake, the javac maker support maven project, gradle project or eclipse project.
|
I am maintainer of javac maker in neomake, the javac maker support maven project, gradle project or eclipse project.
|
||||||
also you can set the classpath.
|
also you can set the classpath.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user