aboutsummaryrefslogtreecommitdiff
path: root/runtime/tools/mve.awk
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2015-04-14 12:28:31 +0200
committerJustin M. Keyes <justinkz@gmail.com>2015-04-14 17:49:37 -0400
commita86193d88edda899dd9859c21554fd6e17cdcb3e (patch)
tree3fd3cf69d82081c00f317620e11984e1d9d9bedd /runtime/tools/mve.awk
parentb47ea5fcdefb2ce33bae3d61d79310646aa8d1a1 (diff)
downloadrneovim-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/mve.awk')
-rwxr-xr-xruntime/tools/mve.awk23
1 files changed, 0 insertions, 23 deletions
diff --git a/runtime/tools/mve.awk b/runtime/tools/mve.awk
deleted file mode 100755
index 396f80677c..0000000000
--- a/runtime/tools/mve.awk
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/usr/bin/nawk -f
-#
-# Change "nawk" to "awk" or "gawk" if you get errors.
-#
-# Make Vim Errors
-# Processes errors from cc for use by Vim's quick fix tools
-# specifically it translates the ---------^ notation to a
-# column number
-#
-BEGIN { FS="[:,]" }
-
-/^cfe/ { file=$3
- msg=$5
- split($4,s," ")
- line=s[2]
-}
-
-# You may have to substitute a tab character for the \t here:
-/^[\t-]*\^/ {
- p=match($0, ".*\\^" )
- col=RLENGTH-2
- printf("%s, line %d, col %d : %s\n", file,line,col,msg)
-}