#!/bin/bash
##########################################################
# Script to envoke the graphical version of the 'vim'    #
# editor and use the initialization file in the the      #
# users home directory. This should happen automatically #
# but doesn't, apparently due to a bug in gvim.          #
##########################################################

gvim -u ~/.vimrc $*

# End.
