home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
text
/
vim
/
tools
/
vim132
< prev
Wrap
Text File
|
1995-02-27
|
238b
|
12 lines
#! /bin/csh
# Shell script for use with UNIX
# Starts up Vim with the terminal in 132 column mode
# Only works on VT-100 terminals and lookalikes
#
set oldterm=$term
echo "?3h"
setenv TERM vt100-w
vim $*
set term=$oldterm
echo "?3l"