Skip to content

Instantly share code, notes, and snippets.

@mrtazz
Created July 5, 2010 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrtazz/464118 to your computer and use it in GitHub Desktop.
Save mrtazz/464118 to your computer and use it in GitHub Desktop.
#!/bin/bash
#
# shell script to invoke gvim with working directory as default
# created for easier use of gvim in a mingw32 environment such as
# the git bash
#
if [ $# == 0 ]
then
C:\\Programme\\Vim\\vim72\\gvim.exe . &
else
C:\\Programme\\Vim\\vim72\\gvim.exe $@ &
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment