diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-10-19 16:22:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-19 16:22:51 -0500 |
commit | 594ff34581907fed4956d4dc93c033dfdd5f7a69 (patch) | |
tree | b2c3153926a9e17f3621c5adbc833d1e49fcab88 | |
parent | 2c9d4ef45908a933e8a22233733a1482ebd6be31 (diff) | |
download | rneovim-594ff34581907fed4956d4dc93c033dfdd5f7a69.tar.gz rneovim-594ff34581907fed4956d4dc93c033dfdd5f7a69.tar.bz2 rneovim-594ff34581907fed4956d4dc93c033dfdd5f7a69.zip |
vim-patch:d5dc58aeed1b (#25720)
runtime(json5): Add new ftplugin (vim/vim#13385)
https://github.com/vim/vim/commit/d5dc58aeed1b3e76527685d04906afd634d45949
Co-authored-by: dkearns <dougkearns@gmail.com>
-rw-r--r-- | runtime/ftplugin/json5.vim | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/runtime/ftplugin/json5.vim b/runtime/ftplugin/json5.vim new file mode 100644 index 0000000000..2560857a33 --- /dev/null +++ b/runtime/ftplugin/json5.vim @@ -0,0 +1,28 @@ +" Vim filetype plugin file +" Language: JSON5 +" Maintainer: Doug Kearns <dougkearns@gmail.com> +" Last Change: 2023 Oct 19 + +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +let s:cpo_save = &cpo +set cpo&vim + +setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:// +setlocal commentstring=//\ %s +setlocal formatoptions-=t formatoptions+=croql + +let b:undo_ftplugin = "setl fo< com< cms<" + +if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") + let b:browsefilter = "JSON5 Files (*.json5)\t*.json5\n" .. + \ "JSON Files (*.json)\t*.json\n" .. + \ "All Files (*.*)\t*.*\n" + let b:undo_ftplugin ..= " | unlet! b:browsefilter" +endif + +let &cpo = s:cpo_save +unlet s:cpo_save |