Mercurial > vim
view runtime/tools/vim132 @ 30802:15130b9714c5
Added tag v9.0.0735 for changeset 4fbd9086f149fdd518d95a8d2e2b72d27210649a
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 12 Oct 2022 22:45:04 +0200 |
parents | 3fc0f57ecb91 |
children |
line wrap: on
line source
#!/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"