Add new stuff
This commit is contained in:
parent
69661de82f
commit
07744f6823
333 changed files with 1989 additions and 6 deletions
253
vim-plugins/temp-unloaded-plugins/eclim/ftplugin/java.vim
Normal file
253
vim-plugins/temp-unloaded-plugins/eclim/ftplugin/java.vim
Normal file
|
|
@ -0,0 +1,253 @@
|
|||
" Author: Eric Van Dewoestine
|
||||
"
|
||||
" License: {{{
|
||||
"
|
||||
" Copyright (C) 2005 - 2015 Eric Van Dewoestine
|
||||
"
|
||||
" This program is free software: you can redistribute it and/or modify
|
||||
" it under the terms of the GNU General Public License as published by
|
||||
" the Free Software Foundation, either version 3 of the License, or
|
||||
" (at your option) any later version.
|
||||
"
|
||||
" This program is distributed in the hope that it will be useful,
|
||||
" but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
" GNU General Public License for more details.
|
||||
"
|
||||
" You should have received a copy of the GNU General Public License
|
||||
" along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
"
|
||||
" }}}
|
||||
|
||||
" Options {{{
|
||||
|
||||
exec 'setlocal ' . g:EclimCompletionMethod . '=eclim#java#complete#CodeComplete'
|
||||
|
||||
if g:EclimJavaSetCommonOptions
|
||||
" allow cpp keywords in java files (delete, friend, union, template, etc).
|
||||
let java_allow_cpp_keywords=1
|
||||
|
||||
" tell vim how to search for included files.
|
||||
setlocal include=^\s*import
|
||||
setlocal includeexpr=substitute(v:fname,'\\.','/','g')
|
||||
setlocal suffixesadd=.java
|
||||
endif
|
||||
|
||||
" set make program and error format accordingly.
|
||||
if g:EclimJavaCompilerAutoDetect
|
||||
" use ant settings
|
||||
if eclim#util#Findfile('build.xml', '.;') != '' &&
|
||||
\ eclim#util#CompilerExists('eclim_ant')
|
||||
compiler eclim_ant
|
||||
|
||||
" use mvn settings
|
||||
elseif eclim#util#Findfile('pom.xml', '.;') != '' &&
|
||||
\ eclim#util#CompilerExists('eclim_mvn')
|
||||
compiler eclim_mvn
|
||||
|
||||
if !g:EclimMakeLCD && !exists('g:EclimMakeLCDWarning')
|
||||
call eclim#util#EchoWarning("WARNING: g:EclimMakeLCD disabled.\n" .
|
||||
\ "Unlike maven and ant, mvn does not provide a mechanism to " .
|
||||
\ "search for the target build file.\n" .
|
||||
\ "Disabling g:EclimMakeLCD may cause issues when executing :make or :Mvn")
|
||||
let g:EclimMakeLCDWarning = 1
|
||||
endif
|
||||
|
||||
" use maven settings
|
||||
elseif eclim#util#Findfile('project.xml', '.;') != '' &&
|
||||
\ eclim#util#CompilerExists('eclim_maven')
|
||||
compiler eclim_maven
|
||||
|
||||
" use standard jikes if available
|
||||
elseif executable('jikes')
|
||||
compiler jikes
|
||||
let g:EclimMakeLCD = 0
|
||||
|
||||
" default to standard javac settings
|
||||
else
|
||||
compiler javac
|
||||
let g:EclimMakeLCD = 0
|
||||
endif
|
||||
endif
|
||||
|
||||
call eclim#lang#DisableSyntasticIfValidationIsEnabled('java')
|
||||
|
||||
" }}}
|
||||
|
||||
" Abbreviations {{{
|
||||
|
||||
if !exists("g:EclimLoggingDisabled") || !g:EclimLoggingDisabled
|
||||
inoreabbrev <buffer> log log<c-r>=eclim#java#logging#LoggingInit("log")<cr>
|
||||
inoreabbrev <buffer> logger logger<c-r>=eclim#java#logging#LoggingInit("logger")<cr>
|
||||
endif
|
||||
|
||||
" }}}
|
||||
|
||||
" Autocmds {{{
|
||||
|
||||
if &ft == 'java'
|
||||
augroup eclim_java
|
||||
autocmd! BufWritePost <buffer>
|
||||
autocmd BufWritePost <buffer> call eclim#lang#UpdateSrcFile('java')
|
||||
augroup END
|
||||
endif
|
||||
|
||||
" }}}
|
||||
|
||||
" Command Declarations {{{
|
||||
|
||||
if !exists(":Validate")
|
||||
command -nargs=0 -buffer Validate :call eclim#lang#UpdateSrcFile('java', 1)
|
||||
endif
|
||||
|
||||
if !exists(":JavaCorrect")
|
||||
command -buffer JavaCorrect :call eclim#java#correct#Correct()
|
||||
endif
|
||||
|
||||
if !exists(":JavaFormat")
|
||||
command -buffer -range JavaFormat :call eclim#java#src#Format(<line1>, <line2>)
|
||||
endif
|
||||
|
||||
if !exists(":JavaImport")
|
||||
command -buffer JavaImport :call eclim#java#import#Import()
|
||||
endif
|
||||
if !exists(":JavaImportOrganize")
|
||||
command -buffer JavaImportOrganize :call eclim#java#import#OrganizeImports()
|
||||
endif
|
||||
|
||||
if !exists(":JavaDocComment")
|
||||
command -buffer JavaDocComment :call eclim#java#doc#Comment()
|
||||
endif
|
||||
if !exists(":JavaDocPreview")
|
||||
command -buffer JavaDocPreview :call eclim#java#doc#Preview()
|
||||
endif
|
||||
|
||||
if !exists(":Javadoc")
|
||||
command -buffer -bang -nargs=*
|
||||
\ -complete=customlist,eclim#java#doc#CommandCompleteJavadoc
|
||||
\ Javadoc :call eclim#java#doc#Javadoc('<bang>', <q-args>)
|
||||
endif
|
||||
if exists(":Java") != 2
|
||||
command -buffer -nargs=* Java :call eclim#java#util#Java('', <q-args>)
|
||||
endif
|
||||
if exists(":JavaClasspath") != 2
|
||||
command -buffer -nargs=* JavaClasspath :call eclim#java#util#Classpath(<f-args>)
|
||||
endif
|
||||
if exists(":JavaListInstalls") != 2
|
||||
command -buffer -nargs=* JavaListInstalls :call eclim#java#util#ListInstalls()
|
||||
endif
|
||||
|
||||
if !exists(":JavaConstructor")
|
||||
command -buffer -range=0 -bang JavaConstructor
|
||||
\ :call eclim#java#impl#Constructor(<line1>, <line2>, '<bang>')
|
||||
endif
|
||||
|
||||
if !exists(":JavaGet")
|
||||
command -buffer -range -bang JavaGet
|
||||
\ :call eclim#java#impl#GetterSetter(<line1>, <line2>, '<bang>', 'getter')
|
||||
endif
|
||||
if !exists(":JavaSet")
|
||||
command -buffer -range -bang JavaSet
|
||||
\ :call eclim#java#impl#GetterSetter(<line1>, <line2>, '<bang>', 'setter')
|
||||
endif
|
||||
if !exists(":JavaGetSet")
|
||||
command -buffer -range -bang JavaGetSet
|
||||
\ :call eclim#java#impl#GetterSetter(<line1>, <line2>, '<bang>', 'getter_setter')
|
||||
endif
|
||||
|
||||
if !exists(":JavaImpl")
|
||||
command -buffer JavaImpl :call eclim#java#impl#Impl()
|
||||
endif
|
||||
if !exists(":JavaDelegate")
|
||||
command -buffer JavaDelegate :call eclim#java#impl#Delegate()
|
||||
endif
|
||||
|
||||
if !exists(":JavaSearch")
|
||||
command -buffer -nargs=*
|
||||
\ -complete=customlist,eclim#java#search#CommandCompleteSearch
|
||||
\ JavaSearch :call eclim#java#search#SearchAndDisplay('java_search', '<args>')
|
||||
endif
|
||||
if !exists(":JavaSearchContext")
|
||||
command -buffer -nargs=?
|
||||
\ -complete=customlist,eclim#java#search#CommandCompleteSearchContext
|
||||
\ JavaSearchContext :call eclim#java#search#SearchAndDisplay('java_search', '<args>')
|
||||
endif
|
||||
if !exists(":JavaDocSearch")
|
||||
command -buffer -nargs=*
|
||||
\ -complete=customlist,eclim#java#search#CommandCompleteSearch
|
||||
\ JavaDocSearch :call eclim#java#search#SearchAndDisplay('java_docsearch', '<args>')
|
||||
endif
|
||||
|
||||
if !exists(":JavaCallHierarchy")
|
||||
command -buffer -bang -nargs=*
|
||||
\ -complete=customlist,eclim#java#search#CommandCompleteSearchScope
|
||||
\ JavaCallHierarchy
|
||||
\ :call eclim#lang#hierarchy#CallHierarchy(
|
||||
\ 'java', g:EclimJavaCallHierarchyDefaultAction, '<bang>', '<args>')
|
||||
endif
|
||||
|
||||
if !exists(":JavaHierarchy")
|
||||
command -buffer -range JavaHierarchy :call eclim#java#hierarchy#Hierarchy()
|
||||
endif
|
||||
|
||||
if !exists(":JavaRename")
|
||||
command -nargs=1 -buffer JavaRename :call eclim#java#refactor#Rename('<args>')
|
||||
endif
|
||||
if !exists(":JavaMove")
|
||||
command -nargs=1 -buffer -complete=customlist,eclim#java#util#CommandCompletePackage
|
||||
\ JavaMove :call eclim#java#refactor#Move('<args>')
|
||||
endif
|
||||
|
||||
if !exists(":JavaNew")
|
||||
command -nargs=+ -buffer -complete=customlist,eclim#java#new#CommandComplete
|
||||
\ JavaNew :call eclim#java#new#Create(<f-args>)
|
||||
endif
|
||||
|
||||
if !exists(":JavaLoggingInit")
|
||||
command -buffer JavaLoggingInit :call eclim#java#logging#LoggingInit()
|
||||
endif
|
||||
|
||||
if !exists(":JUnit")
|
||||
command -buffer -nargs=? -bang -complete=customlist,eclim#java#junit#CommandCompleteTest
|
||||
\ JUnit :call eclim#java#junit#JUnit('<args>', '<bang>')
|
||||
endif
|
||||
if !exists(":JUnitFindTest")
|
||||
command -buffer JUnitFindTest :call eclim#java#junit#JUnitFindTest()
|
||||
endif
|
||||
if !exists(":JUnitResult")
|
||||
command -buffer -nargs=? -complete=customlist,eclim#java#junit#CommandCompleteResult
|
||||
\ JUnitResult :call eclim#java#junit#JUnitResult('<args>')
|
||||
endif
|
||||
if !exists(":JUnitImpl")
|
||||
command -buffer JUnitImpl :call eclim#java#junit#JUnitImpl()
|
||||
endif
|
||||
|
||||
if !exists(":Checkstyle")
|
||||
command -nargs=0 -buffer Checkstyle :call eclim#java#src#Checkstyle()
|
||||
endif
|
||||
|
||||
if !exists(":JavaDebug")
|
||||
command -nargs=* -buffer JavaDebugStart
|
||||
\ :call eclim#java#debug#DebugStart(<f-args>)
|
||||
command -nargs=0 -buffer JavaDebugStop :call eclim#java#debug#DebugStop()
|
||||
command -nargs=0 -buffer JavaDebugStatus :call eclim#java#debug#Status()
|
||||
command -nargs=+ -buffer JavaDebugStep :call eclim#java#debug#Step(<f-args>)
|
||||
|
||||
command -nargs=0 -buffer JavaDebugThreadSuspendAll
|
||||
\ :call eclim#java#debug#DebugThreadSuspendAll()
|
||||
command -nargs=0 -buffer JavaDebugThreadResume
|
||||
\ :call eclim#java#debug#DebugThreadResume()
|
||||
command -nargs=0 -buffer JavaDebugThreadResumeAll
|
||||
\ :call eclim#java#debug#DebugThreadResumeAll()
|
||||
|
||||
command -nargs=0 -buffer -bang JavaDebugBreakpointToggle
|
||||
\ :call eclim#java#debug#BreakpointToggle('<bang>')
|
||||
command -nargs=0 -buffer -bang JavaDebugBreakpointsList
|
||||
\ :call eclim#java#debug#BreakpointsList('<bang>')
|
||||
command -nargs=0 -buffer -bang JavaDebugBreakpointRemove
|
||||
\ :call eclim#java#debug#BreakpointRemove('<bang>')
|
||||
endif
|
||||
|
||||
" }}}
|
||||
|
||||
" vim:ft=vim:fdm=marker
|
||||
Loading…
Add table
Add a link
Reference in a new issue