blob: 2560857a3360ccb069fc87ddcba3b06e0fcf95dc [file] [log] [blame]
dkearnsd5dc58a2023-10-20 05:00:12 +11001" Vim filetype plugin file
2" Language: JSON5
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
4" Last Change: 2023 Oct 19
5
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=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
15setlocal commentstring=//\ %s
16setlocal formatoptions-=t formatoptions+=croql
17
18let b:undo_ftplugin = "setl fo< com< cms<"
19
20if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
21 let b:browsefilter = "JSON5 Files (*.json5)\t*.json5\n" ..
22 \ "JSON Files (*.json)\t*.json\n" ..
23 \ "All Files (*.*)\t*.*\n"
24 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
25endif
26
27let &cpo = s:cpo_save
28unlet s:cpo_save