diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2015-04-14 12:28:31 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-04-14 17:49:37 -0400 |
commit | a86193d88edda899dd9859c21554fd6e17cdcb3e (patch) | |
tree | 3fd3cf69d82081c00f317620e11984e1d9d9bedd /runtime/tools/vim132 | |
parent | b47ea5fcdefb2ce33bae3d61d79310646aa8d1a1 (diff) | |
download | rneovim-a86193d88edda899dd9859c21554fd6e17cdcb3e.tar.gz rneovim-a86193d88edda899dd9859c21554fd6e17cdcb3e.tar.bz2 rneovim-a86193d88edda899dd9859c21554fd6e17cdcb3e.zip |
Remove runtime/tools/ #2426
This directory contains old (at least 10+ years) scripts that mainly filter
output of other old programs to make them conformant with an 'errorformat'
from 10+ years ago.
Diffstat (limited to 'runtime/tools/vim132')
-rwxr-xr-x | runtime/tools/vim132 | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/runtime/tools/vim132 b/runtime/tools/vim132 deleted file mode 100755 index 29ea4ce1ff..0000000000 --- a/runtime/tools/vim132 +++ /dev/null @@ -1,13 +0,0 @@ -#!/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" |