blob: b6dbf1a0d1b84183636a989441d655edb469bebb [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim filetype plugin file
Doug Kearns93197fd2024-01-14 20:59:02 +01002" Language: sgml
Bram Moolenaar1588bc82022-03-08 21:35:07 +00003"
4" This runtime file is looking for a new maintainer.
5"
6" Former maintainer: Dan Sharp
Doug Kearns93197fd2024-01-14 20:59:02 +01007" Last Change: 2009 Jan 20
8" 2024 Jan 14 by Vim Project (browsefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009
10if exists("b:did_ftplugin") | finish | endif
11
12" Make sure the continuation lines below do not cause problems in
13" compatibility mode.
14let s:save_cpo = &cpo
15set cpo-=C
16
17" Define some defaults in case the included ftplugins don't set them.
18let s:undo_ftplugin = ""
Doug Kearns93197fd2024-01-14 20:59:02 +010019let s:browsefilter = "XML Files (*.xml)\t*.xml\n"
20if has("win32")
21 let s:browsefilter .= "All Files (*.*)\t*\n"
22else
23 let s:browsefilter .= "All Files (*)\t*\n"
24endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000025
26runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim
27let b:did_ftplugin = 1
28
29" Override our defaults if these were set by an included ftplugin.
30if exists("b:undo_ftplugin")
31 let s:undo_ftplugin = b:undo_ftplugin
32endif
33if exists("b:browsefilter")
34 let s:browsefilter = b:browsefilter
35endif
36
37" Change the :browse e filter to primarily show xml-related files.
Doug Kearns93197fd2024-01-14 20:59:02 +010038if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
Bram Moolenaar071d4272004-06-13 20:20:40 +000039 let b:browsefilter="SGML Files (*.sgml,*.sgm)\t*.sgm*\n" . s:browsefilter
40endif
41
42" Undo the stuff we changed.
43let b:undo_ftplugin = "unlet! b:browsefilter | " . s:undo_ftplugin
44
45" Restore the saved compatibility options.
46let &cpo = s:save_cpo
Bram Moolenaar84f72352012-03-11 15:57:40 +010047unlet s:save_cpo