freebsd-dev/contrib/nvi/docs/tutorial/vi.tut.csh
Peter Wemm b8ba871bd9 Import of nvi-1.79, minus a few bits that we dont need (eg: postscript
files, curses, db, regex etc that we already have).  The other glue will
follow shortly.

Obtained from: Keith Bostic <bostic@bostic.com>
1996-11-01 06:45:43 +00:00

25 lines
468 B
Tcsh
Executable File

#!/bin/csh -f
#
# This makes the user's EXINIT variable set to the 'correct' things.
# I don't know what will happen if they also have a .exrc file!
#
# XXX
# Make sure that user is using a 24 line window!!!
#
if ($1 != "beginner" && $1 != "advanced") then
echo Usage: $0 beginner or $0 advanced
exit
endif
if ($?EXINIT) then
set oexinit="$EXINIT"
setenv EXINIT 'se ts=4 wm=8 sw=4'
endif
vi vi.{$1}
onintr:
if ($?oexinit) then
setenv EXINIT "$oexinit"
endif