Opening with search text does inclusive search
[MacVim.git] / runtime / ftplugin / dtd.vim
blob3b15bda3c4710e2b6a99671084add220673067e3
1 " Vim filetype plugin file
2 " Language:     dtd
3 " Maintainer:   Dan Sharp <dwsharp at hotmail dot com>
4 " Last Changed: 30 Jun 2008
5 " URL:          http://mywebpage.netscape.com/sharppeople/vim/ftplugin
7 if exists("b:did_ftplugin") | finish | endif
8 let b:did_ftplugin = 1
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
15 setlocal commentstring=<!--%s-->
16 setlocal comments=s:<!--,m:\ \ \ \ \ ,e:-->
18 setlocal formatoptions-=t
19 if !exists("g:ft_dtd_autocomment") || (g:ft_dtd_autocomment == 1)
20     setlocal formatoptions+=croql
21 endif
23 if exists("loaded_matchit")
24     let b:match_words = '<!--:-->,<!:>'
25 endif
27 " Change the :browse e filter to primarily show Java-related files.
28 if has("gui_win32")
29     let  b:browsefilter="DTD Files (*.dtd)\t*.dtd\n" .
30                 \       "XML Files (*.xml)\t*.xml\n" .
31                 \       "All Files (*.*)\t*.*\n"
32 endif
34 " Undo the stuff we changed.
35 let b:undo_ftplugin = "setlocal commentstring< comments< formatoptions<" .
36                 \     " | unlet! b:matchwords b:browsefilter"
38 " Restore the saved compatibility options.
39 let &cpo = s:save_cpo