neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

xhtml.vim (2180B)


      1 " Vim filetype plugin file
      2 " Language:		xhtml
      3 "
      4 " This runtime file is looking for a new maintainer.
      5 "
      6 " Former maintainer:	Dan Sharp
      7 " Last Changed: 	2009 Jan 20
      8 "			2024 Jan 14 by Vim Project (browsefilter)
      9 
     10 if exists("b:did_ftplugin") | finish | endif
     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 " Define some defaults in case the included ftplugins don't set them.
     18 let s:undo_ftplugin = ""
     19 let s:browsefilter = "HTML Files (*.html, *.htm)\t*.html;*.htm\n" .
     20     \	     "XML Files (*.xml)\t*.xml\n"
     21 if has("win32")
     22    let s:browsefilter .= "All Files (*.*)\t*\n"
     23 else
     24    let s:browsefilter .= "All Files (*)\t*\n"
     25 endif
     26 let s:match_words = ""
     27 
     28 runtime! ftplugin/xml.vim ftplugin/xml_*.vim ftplugin/xml/*.vim
     29 unlet b:did_ftplugin
     30 
     31 " Override our defaults if these were set by an included ftplugin.
     32 if exists("b:undo_ftplugin")
     33    let s:undo_ftplugin = b:undo_ftplugin
     34    unlet b:undo_ftplugin
     35 endif
     36 if exists("b:browsefilter")
     37    let s:browsefilter = b:browsefilter
     38    unlet b:browsefilter
     39 endif
     40 if exists("b:match_words")
     41    let s:match_words = b:match_words
     42    unlet b:match_words
     43 endif
     44 
     45 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim
     46 let b:did_ftplugin = 1
     47 
     48 " Combine the new set of values with those previously included.
     49 if exists("b:undo_ftplugin")
     50    let s:undo_ftplugin = b:undo_ftplugin . " | " . s:undo_ftplugin
     51 endif
     52 if exists("b:browsefilter")
     53    let s:browsefilter = b:browsefilter . s:browsefilter
     54 endif
     55 if exists("b:match_words")
     56    let s:match_words = b:match_words . "," . s:match_words
     57 endif
     58 
     59 " Load the combined list of match_words for matchit.vim
     60 if exists("loaded_matchit")
     61    let b:match_words = s:match_words
     62 endif
     63 
     64 " Change the :browse e filter to primarily show tcsh-related files.
     65 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
     66    let  b:browsefilter="XHTML files (*.xhtml, *.xhtm)\t*.xhtml;*.xhtm\n" . s:browsefilter
     67 endif
     68 
     69 " Undo the stuff we changed.
     70 let b:undo_ftplugin = "unlet! b:browsefilter b:match_words | " . s:undo_ftplugin
     71 
     72 " Restore the saved compatibility options.
     73 let &cpo = s:save_cpo
     74 unlet s:save_cpo