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:
Text File  |  1993-10-13  |  238 b   |  12 lines

  1. #! /bin/csh
  2. # Shell script for use with UNIX
  3. # Starts up Vim with the terminal in 132 column mode
  4. # Only works on VT-100 terminals and lookalikes
  5. #
  6. set oldterm=$term
  7. echo "?3h"
  8. setenv TERM vt100-w 
  9. vim $*
  10. set term=$oldterm
  11. echo "?3l"
  12.