Mercurial > vim
view runtime/tools/mve.awk @ 7955:a4de8e834b8f v7.4.1273
commit https://github.com/vim/vim/commit/c5f98ee987ae0c369867cf6cc581c766d3c0226d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 7 00:00:35 2016 +0100
patch 7.4.1273
Problem: assert_false(v:false) still fails.
Solution: Fix the typo.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 07 Feb 2016 00:15:04 +0100 |
parents | 3fc0f57ecb91 |
children |
line wrap: on
line source
#!/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) }