comparison runtime/filetype.vim @ 11262:214f228718cf

Update runtime files. commit https://github.com/vim/vim/commit/e0720cbf63eb3045be8d965e3182c0c392c7b5e9 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 29 13:48:40 2017 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Wed, 29 Mar 2017 14:00:06 +0200
parents d0a20101ecb2
children a6b9cdcde548
comparison
equal deleted inserted replaced
11261:afa323d6b143 11262:214f228718cf
1 " Vim support file to detect file types 1 " Vim support file to detect file types
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2017 Mar 13 4 " Last Change: 2017 Mar 27
5 5
6 " Listen very carefully, I will say this only once 6 " Listen very carefully, I will say this only once
7 if exists("did_load_filetypes") 7 if exists("did_load_filetypes")
8 finish 8 finish
9 endif 9 endif
286 286
287 " BibTeX Bibliography Style 287 " BibTeX Bibliography Style
288 au BufNewFile,BufRead *.bst setf bst 288 au BufNewFile,BufRead *.bst setf bst
289 289
290 " BIND configuration 290 " BIND configuration
291 au BufNewFile,BufRead named.conf,rndc.conf setf named 291 " sudoedit uses namedXXXX.conf
292 au BufNewFile,BufRead named*.conf,rndc*.conf setf named
292 293
293 " BIND zone 294 " BIND zone
294 au BufNewFile,BufRead named.root setf bindzone 295 au BufNewFile,BufRead named.root setf bindzone
295 au BufNewFile,BufRead *.db call s:BindzoneCheck('') 296 au BufNewFile,BufRead *.db call s:BindzoneCheck('')
296 297