blob: 9a613799afe51b6f1d77263f142a215bcf5e30d0 [file] [log] [blame]
Bram Moolenaare0e39172021-01-25 21:14:57 +01001" Vim filetype plugin file
Viktor Szépe3fc7a7e2023-08-23 21:20:00 +02002" Language: HTML Tidy Configuration
Bram Moolenaare0e39172021-01-25 21:14:57 +01003" Maintainer: Doug Kearns <dougkearns@gmail.com>
Doug Kearns93197fd2024-01-14 20:59:02 +01004" Last Change: 2024 Jan 14
Bram Moolenaare0e39172021-01-25 21:14:57 +01005
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11let s:cpo_save = &cpo
12set cpo&vim
13
14setlocal comments=:#,://
15setlocal commentstring=#\ %s
16setlocal formatoptions-=t formatoptions+=croql
17
Doug Kearns93197fd2024-01-14 20:59:02 +010018let b:undo_ftplugin = "setl fo< com< cms<"
19
Bram Moolenaare0e39172021-01-25 21:14:57 +010020if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
21 let b:browsefilter = "HTML Tidy Files (tidyrc, .tidyrc, tidy.conf)\ttidyrc;.tidyrc;tidy.conf\n" .
22 \ "HTML Files (*.html, *.htm)\t*.html;*.htm\n" .
23 \ "XHTML Files (*.xhtml, *.xhtm)\t*.xhtml;*.xhtm\n" .
Doug Kearns93197fd2024-01-14 20:59:02 +010024 \ "XML Files (*.xml)\t*.xml\n"
25 if has("win32")
26 let b:browsefilter .= "All Files (*.*)\t*\n"
27 else
28 let b:browsefilter .= "All Files (*)\t*\n"
29 endif
30 let b:undo_ftplugin .= " | unlet! b:browsefilter"
Bram Moolenaare0e39172021-01-25 21:14:57 +010031endif
32
Bram Moolenaare0e39172021-01-25 21:14:57 +010033let &cpo = s:cpo_save
34unlet s:cpo_save
35
36" vim: nowrap sw=2 sts=2 ts=8