annotate runtime/tools/vim132 @ 36549:07e948b0d33b
draft default tip
runtime(doc): mention option-backslash at :h CompilerSet
Commit: https://github.com/vim/vim/commit/dbf231a4b7fba235fa9ccc8798b37c0b4a4943ae
Author: Christian Brabandt <cb@256bit.org>
Date: Wed Nov 13 20:28:43 2024 +0100
runtime(doc): mention option-backslash at :h CompilerSet
Signed-off-by: Christian Brabandt <cb@256bit.org>
author |
Christian Brabandt <cb@256bit.org> |
date |
Wed, 13 Nov 2024 20:45:02 +0100 |
parents |
3fc0f57ecb91 |
children |
|
rev |
line source |
7
|
1 #!/bin/csh
|
|
2 #
|
|
3 # Shell script for use with UNIX
|
|
4 # Starts up Vim with the terminal in 132 column mode
|
|
5 # Only works on VT-100 terminals and lookalikes
|
|
6 # You need to have a termcap entry "vt100-w". Same as vt100 but 132 columns.
|
|
7 #
|
|
8 set oldterm=$term
|
|
9 echo "[?3h"
|
|
10 setenv TERM vt100-w
|
|
11 vim $*
|
|
12 set term=$oldterm
|
|
13 echo "[?3l"
|