Skip to content

Commit

Permalink
Fix ident of new code.
Browse files Browse the repository at this point in the history
  • Loading branch information
artur-shaik committed Jul 29, 2015
1 parent 68bca48 commit 1206a09
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions autoload/javacomplete.vim
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
" It doesn't make sense to do any work if vim doesn't support any Python since
" we relly on it to properly work.
if has("python2")
command! -nargs=1 JavacompletePy py <args>
command! -nargs=1 JavacompletePyfile pyfile <args>
command! -nargs=1 JavacompletePy py <args>
command! -nargs=1 JavacompletePyfile pyfile <args>
elseif has("python3")
command! -nargs=1 JavacompletePy py3 <args>
command! -nargs=1 JavacompletePyfile py3file <args>
command! -nargs=1 JavacompletePy py3 <args>
command! -nargs=1 JavacompletePyfile py3file <args>
else
echoerr "Javacomplete needs Python support to run!"
finish
echoerr "Javacomplete needs Python support to run!"
finish
endif

" constants {{{1
Expand Down

0 comments on commit 1206a09

Please sign in to comment.