updated js-beautify for json to use config file
This commit is contained in:
parent
a2f9b88bcd
commit
72fb185c77
@ -112,7 +112,13 @@ endif
|
|||||||
|
|
||||||
" JSON
|
" JSON
|
||||||
if !exists('g:formatdef_jsbeautify_json')
|
if !exists('g:formatdef_jsbeautify_json')
|
||||||
let g:formatdef_jsbeautify_json = '"js-beautify -f - -".(&expandtab ? "s ".shiftwidth() : "t")'
|
if filereadable('.jsbeautifyrc')
|
||||||
|
let g:formatdef_jsbeautify_json = '"js-beautify"'
|
||||||
|
elseif filereadable(expand('~/.jsbeautifyrc'))
|
||||||
|
let g:formatdef_jsbeautify_json = '"js-beautify"'
|
||||||
|
else
|
||||||
|
let g:formatdef_jsbeautify_json = '"js-beautify -f - -".(&expandtab ? "s ".shiftwidth() : "t")'
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if !exists('g:formatdef_pyjsbeautify_json')
|
if !exists('g:formatdef_pyjsbeautify_json')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user