Clarify projectionist requirement

Closes #153.
This commit is contained in:
Tim Pope 2014-05-19 19:26:13 -04:00
parent 29af4adc46
commit 67078e0c34
1 changed files with 5 additions and 5 deletions

View File

@ -1471,7 +1471,7 @@ augroup END
" }}}1 " }}}1
" Legacy {{{1 " Legacy {{{1
if !empty(findfile('plugin/leiningen.vim', escape(&rtp, ' '))) if !empty(findfile('plugin/leiningen.vim', escape(&rtp, ' '))) && !empty(findfile('plugin/projectionist.vim', escape(&rtp, ' ')))
finish finish
endif endif
@ -1484,10 +1484,10 @@ function! s:define_alternates() abort
if exists(':A') == 2 if exists(':A') == 2
return return
endif endif
command! -buffer -bar -bang A echoerr 'Install leiningen.vim to continue using :A' command! -buffer -bar -bang A echoerr 'Install leiningen.vim and projectionist.vim to continue using :A'
command! -buffer -bar -bang AS echoerr 'Install leiningen.vim to continue using :A' command! -buffer -bar -bang AS echoerr 'Install leiningen.vim and projectionist.vim to continue using :A'
command! -buffer -bar -bang AV echoerr 'Install leiningen.vim to continue using :A' command! -buffer -bar -bang AV echoerr 'Install leiningen.vim and projectionist.vim to continue using :A'
command! -buffer -bar -bang AT echoerr 'Install leiningen.vim to continue using :A' command! -buffer -bar -bang AT echoerr 'Install leiningen.vim and projectionist.vim to continue using :A'
endfunction endfunction
" }}}1 " }}}1