Mercurial > vim
annotate runtime/ftplugin/dtd.vim @ 28103:1615d305c71d v8.2.4576
patch 8.2.4576: Vim9: error for comparing with null can be annoying
Commit: https://github.com/vim/vim/commit/056678184f679c2989b73bd48eda112f3c79a62f
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Mar 15 20:21:33 2022 +0000
patch 8.2.4576: Vim9: error for comparing with null can be annoying
Problem: Vim9: error for comparing with null can be annoying.
Solution: Allow comparing anything with null. (closes https://github.com/vim/vim/issues/9948)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 15 Mar 2022 21:30:03 +0100 |
parents | c968191a8557 |
children | 8ae680be2a51 |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin file |
2 " Language: dtd | |
28010 | 3 " |
4 " This runtime file is looking for a new maintainer. | |
5 " | |
6 " Former maintainer: Dan Sharp | |
2034 | 7 " Last Changed: 20 Jan 2009 |
7 | 8 |
9 if exists("b:did_ftplugin") | finish | endif | |
10 let b:did_ftplugin = 1 | |
11 | |
12 " Make sure the continuation lines below do not cause problems in | |
13 " compatibility mode. | |
14 let s:save_cpo = &cpo | |
15 set cpo-=C | |
16 | |
17 setlocal commentstring=<!--%s--> | |
1698 | 18 setlocal comments=s:<!--,m:\ \ \ \ \ ,e:--> |
19 | |
20 setlocal formatoptions-=t | |
21 if !exists("g:ft_dtd_autocomment") || (g:ft_dtd_autocomment == 1) | |
22 setlocal formatoptions+=croql | |
23 endif | |
7 | 24 |
25 if exists("loaded_matchit") | |
26 let b:match_words = '<!--:-->,<!:>' | |
27 endif | |
28 | |
29 " Change the :browse e filter to primarily show Java-related files. | |
30 if has("gui_win32") | |
31 let b:browsefilter="DTD Files (*.dtd)\t*.dtd\n" . | |
32 \ "XML Files (*.xml)\t*.xml\n" . | |
33 \ "All Files (*.*)\t*.*\n" | |
34 endif | |
35 | |
36 " Undo the stuff we changed. | |
1698 | 37 let b:undo_ftplugin = "setlocal commentstring< comments< formatoptions<" . |
7 | 38 \ " | unlet! b:matchwords b:browsefilter" |
39 | |
40 " Restore the saved compatibility options. | |
41 let &cpo = s:save_cpo | |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
42 unlet s:save_cpo |