Automatically cd to a symfony project's root in vim

I made a little vimscript to automatically cd to the project root of a symfony project. It makes it easier for me to use the ctags :-) "------------------------------------------------------------------------------- " Description: Finds and cd to the symfony root of the project "...

Mass vim file opening reloaded

Thinking about it, the snippet I posted earlier was a bit silly as vim can open by itself multiple files way more efficiently. The only benefit from my script is that I don't have to type the --servername and --remote-silent-tab. So let's add some usefulness ! First, when I need this script, it's...

Mass vim file opening 1

Remember my old post about vim and rox-filer ? Well I've got one tiny and silly addition to it now, I can mass open files from any shell command line, with this little script placed in my ~/bin/ (don't forget to chmod +x): for i in $*; do /usr/bin/gvim --servername ash0 --remote-silent-tab $i sleep...

Top tags