view runtime/tools/vim132 @ 27961:dd28ede556db

Added tag v8.2.4505 for changeset be693de4063480f0a418486be32cd38ca86fe991
author Bram Moolenaar <Bram@vim.org>
date Fri, 04 Mar 2022 21:15:03 +0100
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"