Mercurial > vim
annotate runtime/ftplugin/html.vim @ 16397:7a942d92980d v8.1.1203
patch 8.1.1203: some autocmd tests are old style
commit https://github.com/vim/vim/commit/69ea587289b03e23a9fb96adffd6e8173cbc5896
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 25 20:29:00 2019 +0200
patch 8.1.1203: some autocmd tests are old style
Problem: Some autocmd tests are old style.
Solution: Turn the tests into new style. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4295)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 25 Apr 2019 20:30:05 +0200 |
parents | 7b83c190d370 |
children | c968191a8557 |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin file |
2 " Language: html | |
2034 | 3 " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net> |
4 " Last Changed: 20 Jan 2009 | |
5 " URL: http://dwsharp.users.sourceforge.net/vim/ftplugin | |
7 | 6 |
7 if exists("b:did_ftplugin") | finish | endif | |
8 let b:did_ftplugin = 1 | |
9 | |
10 " Make sure the continuation lines below do not cause problems in | |
11 " compatibility mode. | |
12 let s:save_cpo = &cpo | |
13 set cpo-=C | |
14 | |
1698 | 15 setlocal matchpairs+=<:> |
7 | 16 setlocal commentstring=<!--%s--> |
1698 | 17 setlocal comments=s:<!--,m:\ \ \ \ ,e:--> |
18 | |
19 if exists("g:ft_html_autocomment") && (g:ft_html_autocomment == 1) | |
20 setlocal formatoptions-=t formatoptions+=croql | |
21 endif | |
22 | |
844 | 23 if exists('&omnifunc') |
6009 | 24 setlocal omnifunc=htmlcomplete#CompleteTags |
25 call htmlcomplete#DetectOmniFlavor() | |
844 | 26 endif |
841 | 27 |
7 | 28 " HTML: thanks to Johannes Zellner and Benji Fisher. |
29 if exists("loaded_matchit") | |
30 let b:match_ignorecase = 1 | |
31 let b:match_words = '<:>,' . | |
32 \ '<\@<=[ou]l\>[^>]*\%(>\|$\):<\@<=li\>:<\@<=/[ou]l>,' . | |
33 \ '<\@<=dl\>[^>]*\%(>\|$\):<\@<=d[td]\>:<\@<=/dl>,' . | |
34 \ '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>' | |
35 endif | |
36 | |
37 " Change the :browse e filter to primarily show HTML-related files. | |
38 if has("gui_win32") | |
15 | 39 let b:browsefilter="HTML Files (*.html,*.htm)\t*.htm;*.html\n" . |
7 | 40 \ "JavaScript Files (*.js)\t*.js\n" . |
41 \ "Cascading StyleSheets (*.css)\t*.css\n" . | |
42 \ "All Files (*.*)\t*.*\n" | |
43 endif | |
44 | |
45 " Undo the stuff we changed. | |
1698 | 46 let b:undo_ftplugin = "setlocal commentstring< matchpairs< omnifunc< comments< formatoptions<" . |
7 | 47 \ " | unlet! b:match_ignorecase b:match_skip b:match_words b:browsefilter" |
48 | |
49 " Restore the saved compatibility options. | |
50 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
51 unlet s:save_cpo |