home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 5
/
FreshFish_July-August1994.bin
/
bbs
/
util
/
vim-2.0.lha
/
Vim-2.0
/
doc
/
vim132
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1993-10-13
|
238 b
|
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"