On Thu, Jan 21, 2016 at 10:20 AM, <[email protected]> wrote: > Hi, > > i need a little help with my setup for softwareprojects with a > shellscript. What i want to have is: > > <script> > #!/bin/sh > > export BLAH=blubb > start-some-server& > vim -S theSession --source-file project-specific-default-settings > </script> > > The file project-specific-default-settings contains stuff like > set makeprg=scons > > The files have to be read in this sequence: > 1) ~/.vimrc > 2) project-specific-default-settings > 3) theSession > > What i am missing is "--source-file"... > > Sorry for my dumb questions, till now i used the other editor, and just > a few weeks ago i discovered that vim has some other modes than "beep" > and "destroy text"... ;-) > > regards, > Christoph
vim -S project-settings.vim -S theSession.vim (for files in Vimscript language the extension .vim is recommended, though .vimrc and .gvimrc do not follow the rule) See :help -S The important sentence there is «It can be mixed with "-c" arguments and repeated like "-c".» Best regards, Tony. -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
