Mercurial > vim
view runtime/tools/vim132 @ 10626:37b1197fdd6f
patch 8.0.0202: no test for invalid syntax group name
commit https://github.com/vim/vim/commit/4007ed4a5e8c34197078e9d5718bd1d4a429dd23
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jan 17 18:14:54 2017 +0100
patch 8.0.0202: no test for invalid syntax group name
Problem: No test for invalid syntax group name.
Solution: Add a test for group name error and warning.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 17 Jan 2017 18:15:04 +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"