annotate runtime/tools/mve.txt @ 11533:c83dd5fa40d8 v8.0.0649

patch 8.0.0649: when opening a help file the filetype is set several times commit https://github.com/vim/vim/commit/9049298f8d0bbc237b7c666c7ad6cdabe738e8fc Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 22 14:16:31 2017 +0200 patch 8.0.0649: when opening a help file the filetype is set several times Problem: When opening a help file the filetype is set several times. Solution: When setting the filetype to the same value from a modeline, don't trigger FileType autocommands. Don't set the filetype to "help" when it's already set correctly.
author Christian Brabandt <cb@256bit.org>
date Thu, 22 Jun 2017 14:30:03 +0200
parents 3fc0f57ecb91
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 [ The mve awk script was posted on the vimdev mailing list ]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 From: jimmer@barney.mdhc.mdc.com (J. McGlasson)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 Date: Mon, 31 Mar 1997 13:16:49 -0700 (Mar)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 My compiler (SGI MIPSpro C compiler - IRIX 6.4) works like this.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 I have written a script mve (make vim errors), through which I pipe my make
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 output, which translates output of the following form:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 cfe: Error: syntax.c, line 4: Syntax Error
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 int i[12;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 ------------^
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 into:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 cl.c, line 4, col 12 : Syntax Error
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 (in vim notation: %f, line %l, col %c : %m)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 You might be able to tailor this for your compiler's output.