This tip will allow you to start gvim from the terminal and still use it after Gvim has opened. Step 1: Add the following to your ~/.bashrc or mac equivalent function gvim { /usr/bin/gvim -f $* > /dev/null 2> /dev/null & disown } Step 2: Type gvim in your terminal and it will not hog […]