#!/bin/sh # @(#) open vim(1) using options to act very much like vi(1) in current terminal window (John S. Urban) BASE=`dirname $0` # old vi(1) ##################################################### #esc -bg white -fg black -f 5 exec vim -C -u NONE -c "$EXINIT" $* ##################################################### exit ##################################################### # -C Compatible. Set the 'compatible' option. This will make # Vim behave mostly like Vi, even though a .vimrc file ## exists. #####################################################