home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 5 Edit
/
05-Edit.zip
/
vim45os2.zip
/
vim-4.5
/
tools
/
vim132
< prev
Wrap
Text File
|
1996-10-07
|
328b
|
14 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
# You need to have a termcap entry "vt100-w". Same as vt100 but 132 columns.
#
set oldterm=$term
echo "?3h"
setenv TERM vt100-w
vim $*
set term=$oldterm
echo "?3l"