neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 594ff34581907fed4956d4dc93c033dfdd5f7a69
parent 2c9d4ef45908a933e8a22233733a1482ebd6be31
Author: Gregory Anders <8965202+gpanders@users.noreply.github.com>
Date:   Thu, 19 Oct 2023 16:22:51 -0500

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>
Diffstat:
Aruntime/ftplugin/json5.vim | 28++++++++++++++++++++++++++++
1 file changed, 28 insertions(+), 0 deletions(-)

diff --git a/runtime/ftplugin/json5.vim 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