blob: 302ed7606c6b7c4d50618bbe2ac6625ca9450b58 [file] [log] [blame]
dkearnsd5dc58a2023-10-20 05:00:12 +11001" Vim filetype plugin file
2" Language: JSON5
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
Doug Kearns93197fd2024-01-14 20:59:02 +01004" Last Change: 2024 Jan 14
dkearnsd5dc58a2023-10-20 05:00:12 +11005
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" ..
Doug Kearns93197fd2024-01-14 20:59:02 +010022 \ "JSON Files (*.json)\t*.json\n"
23 if has("win32")
24 let b:browsefilter ..= "All Files (*.*)\t*\n"
25 else
26 let b:browsefilter ..= "All Files (*)\t*\n"
27 endif
dkearnsd5dc58a2023-10-20 05:00:12 +110028 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
29endif
30
31let &cpo = s:cpo_save
32unlet s:cpo_save