Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | " Vim filetype plugin file |
Bram Moolenaar | d47d522 | 2018-12-09 20:43:55 +0100 | [diff] [blame] | 2 | " Language: xml |
| 3 | " Maintainer: Christian Brabandt <cb@256bit.org> |
| 4 | " Last Changed: Dec 07th, 2018 |
Doug Kearns | 93197fd | 2024-01-14 20:59:02 +0100 | [diff] [blame] | 5 | " 2024 Jan 14 by Vim Project (browsefilter) |
Bram Moolenaar | d47d522 | 2018-12-09 20:43:55 +0100 | [diff] [blame] | 6 | " Repository: https://github.com/chrisbra/vim-xml-ftplugin |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 7 | " Previous Maintainer: Dan Sharp |
Bram Moolenaar | 7db25fe | 2018-05-13 00:02:36 +0200 | [diff] [blame] | 8 | " URL: http://dwsharp.users.sourceforge.net/vim/ftplugin |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 9 | |
| 10 | if exists("b:did_ftplugin") | finish | endif |
| 11 | let b:did_ftplugin = 1 |
| 12 | |
| 13 | " Make sure the continuation lines below do not cause problems in |
| 14 | " compatibility mode. |
| 15 | let s:save_cpo = &cpo |
Bram Moolenaar | 7db25fe | 2018-05-13 00:02:36 +0200 | [diff] [blame] | 16 | set cpo&vim |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 17 | |
| 18 | setlocal commentstring=<!--%s--> |
Bram Moolenaar | 7db25fe | 2018-05-13 00:02:36 +0200 | [diff] [blame] | 19 | " Remove the middlepart from the comments section, as this causes problems: |
| 20 | " https://groups.google.com/d/msg/vim_dev/x4GT-nqa0Kg/jvtRnEbtAnMJ |
| 21 | setlocal comments=s:<!--,e:--> |
Bram Moolenaar | e37d50a | 2008-08-06 17:06:04 +0000 | [diff] [blame] | 22 | |
| 23 | setlocal formatoptions-=t |
Bram Moolenaar | 7db25fe | 2018-05-13 00:02:36 +0200 | [diff] [blame] | 24 | setlocal formatoptions+=croql |
| 25 | setlocal formatexpr=xmlformat#Format() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 26 | |
| 27 | " XML: thanks to Johannes Zellner and Akbar Ibrahim |
| 28 | " - case sensitive |
| 29 | " - don't match empty tags <fred/> |
| 30 | " - match <!--, --> style comments (but not --, --) |
| 31 | " - match <!, > inlined dtd's. This is not perfect, as it |
| 32 | " gets confused for example by |
| 33 | " <!ENTITY gt ">"> |
| 34 | if exists("loaded_matchit") |
| 35 | let b:match_ignorecase=0 |
| 36 | let b:match_words = |
| 37 | \ '<:>,' . |
| 38 | \ '<\@<=!\[CDATA\[:]]>,'. |
| 39 | \ '<\@<=!--:-->,'. |
| 40 | \ '<\@<=?\k\+:?>,'. |
| 41 | \ '<\@<=\([^ \t>/]\+\)\%(\s\+[^>]*\%([^/]>\|$\)\|>\|$\):<\@<=/\1>,'. |
| 42 | \ '<\@<=\%([^ \t>/]\+\)\%(\s\+[^/>]*\|$\):/>' |
| 43 | endif |
| 44 | |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 45 | " For Omni completion, by Mikolaj Machowski. |
| 46 | if exists('&ofu') |
| 47 | setlocal ofu=xmlcomplete#CompleteTags |
| 48 | endif |
| 49 | command! -nargs=+ XMLns call xmlcomplete#CreateConnection(<f-args>) |
| 50 | command! -nargs=? XMLent call xmlcomplete#CreateEntConnection(<f-args>) |
| 51 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 52 | " Change the :browse e filter to primarily show xml-related files. |
Bram Moolenaar | 7db25fe | 2018-05-13 00:02:36 +0200 | [diff] [blame] | 53 | if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 54 | let b:browsefilter="XML Files (*.xml)\t*.xml\n" . |
Bram Moolenaar | 7db25fe | 2018-05-13 00:02:36 +0200 | [diff] [blame] | 55 | \ "DTD Files (*.dtd)\t*.dtd\n" . |
Doug Kearns | 93197fd | 2024-01-14 20:59:02 +0100 | [diff] [blame] | 56 | \ "XSD Files (*.xsd)\t*.xsd\n" |
| 57 | if has("win32") |
| 58 | let b:browsefilter .= "All Files (*.*)\t*\n" |
| 59 | else |
| 60 | let b:browsefilter .= "All Files (*)\t*\n" |
| 61 | endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 62 | endif |
| 63 | |
| 64 | " Undo the stuff we changed. |
Bram Moolenaar | 7db25fe | 2018-05-13 00:02:36 +0200 | [diff] [blame] | 65 | let b:undo_ftplugin = "setlocal commentstring< comments< formatoptions< formatexpr< " . |
| 66 | \ " | unlet! b:match_ignorecase b:match_words b:browsefilter" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 67 | |
| 68 | " Restore the saved compatibility options. |
| 69 | let &cpo = s:save_cpo |
Bram Moolenaar | 84f7235 | 2012-03-11 15:57:40 +0100 | [diff] [blame] | 70 | unlet s:save_cpo |