Mercurial > vim
annotate runtime/ftplugin/dtd.vim @ 29448:8f1e16995118 v9.0.0066
patch 9.0.0066: switching window uneccarily when getting buffer options
Commit: https://github.com/vim/vim/commit/cd6ad6439da2ee2d1a8a6934c9d69e9c2664ba55
Author: zeertzjq <zeertzjq@outlook.com>
Date: Mon Jul 25 12:28:09 2022 +0100
patch 9.0.0066: switching window uneccarily when getting buffer options
Problem: Switching window uneccarily when getting buffer options.
Solution: Do not switch window when getting buffer options. (closes https://github.com/vim/vim/issues/10767)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 25 Jul 2022 13:30:05 +0200 |
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 |