Penso che questo è quello che vi serve:
Si dovrebbe controllare vim uomo pagina:
-c {command}
{command} will be executed after the first file has been
read. {command} is interpreted as an Ex command. If the
{command} contains spaces it must be enclosed in double
quotes (this depends on the shell that is used). Example:
Vim "+set si" main.c
Note: You can use up to 10 "+" or "-c" commands.
o:
--cmd {command}
Like using "-c", but the command is executed just before
processing any vimrc file. You can use up to 10 of these
commands, independently from "-c" commands.
Dipende davvero da cosa vuoi fare. Inoltre, come descritto nel file readme vundle, se si avvia vim in questo modo:
vim +BundleInstall +qall
Questo installerà tutte le opzioni di bundle senza aprire vim. E solo per un chiarimento, dal vim documentation:
:qall
This stands for "quit all". If any of the windows contain changes, Vim will
not exit. The cursor will automatically be positioned in a window with
changes. You can then either use ":write" to save the changes, or ":quit!" to
throw them away.
Speranza che aiuta!
fonte
2012-10-11 11:54:57
Questo è direttamente dal README vundle qui: https://github.com/gmarik/vundle – Conner
Sì - ho scoperto che dopo averlo fatto funziona sulla base della manpage – jvc26
Incredibilmente intuitiva. Adoro come non dobbiamo più neanche "man vim" e scorrere due pagine grazie a SO. – peth