Re: [vim/vim] Add g:json_no_conceal to disable conceal for json filetype (#4948)

2019-09-17 Thread Shidong Wang
im/vim<mailto:v...@noreply.github.com> CC: Subscribed<mailto:subscri...@noreply.github.com> Subject: [vim/vim] Add g:json_no_conceal to disable conceal for json filetype (#4948) This PR is about vim syntax file, json.vim I opened this PR because the maintainer's email is not on j

Re: [vim/vim] Add g:json_no_conceal to disable conceal for json filetype (#4948)

2019-09-17 Thread Bram Moolenaar
> there is an option named g:vim_json_warnings in this file, maybe use > g:vim_json_conceal is better, also doc need to be updated. Yes, this would be more consistent: if has('conceal') && (!exists("g:vim_json_conceal") || g:vim_json_conceal==1) Avoiding "no" is also good. Can you sug