Mercurial > vim
annotate runtime/compiler/rst.vim @ 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 | 4aae8146c21f |
children | e1df51f68736 |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
11347 | 2 " Compiler: sphinx >= 1.0.8, http://www.sphinx-doc.org |
3 " Description: reStructuredText Documentation Format | |
11062 | 4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> |
11347 | 5 " Latest Revision: 2017-03-31 |
7 | 6 |
7 if exists("current_compiler") | |
8 finish | |
9 endif | |
10 let current_compiler = "rst" | |
11 | |
12 let s:cpo_save = &cpo | |
3237 | 13 set cpo&vim |
7 | 14 |
11347 | 15 if exists(":CompilerSet") != 2 |
16 command -nargs=* CompilerSet setlocal <args> | |
17 endif | |
18 | |
19 CompilerSet errorformat= | |
20 \%f\\:%l:\ %tEBUG:\ %m, | |
21 \%f\\:%l:\ %tNFO:\ %m, | |
22 \%f\\:%l:\ %tARNING:\ %m, | |
23 \%f\\:%l:\ %tRROR:\ %m, | |
24 \%f\\:%l:\ %tEVERE:\ %m, | |
25 \%f\\:%s:\ %tARNING:\ %m, | |
26 \%f\\:%s:\ %tRROR:\ %m, | |
7 | 27 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f', |
28 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f', | |
29 \%DMaking\ %*\\a\ in\ %f | |
30 | |
31 let &cpo = s:cpo_save | |
32 unlet s:cpo_save |