Mercurial > vim
view runtime/tools/vim132 @ 10191:01521953bdf1
commit https://github.com/vim/vim/commit/220adb1e9f9e0b27d28185167d2730bf2f93057d
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Sep 12 12:17:26 2016 +0200
A few more runtime updates.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 12 Sep 2016 12:30:09 +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"