vim-autoformat/ftplugin/javascript.vim
Chiel92 a4724c5dac issue 4 is neatly fixed, by storing the formatprg in a buffer local
variable, and reloading it on BufEnter,WinEnter
2013-02-08 20:05:52 +01:00

28 lines
714 B
VimL

if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
"Besides installing the js-beautify globally or in the
"formatters/ folder, cloning the repository as a vim bundle
"is supported as well.
let s:prgname = "js-beautify"
let s:arguments = "-i"
let s:bundleDir = fnamemodify(expand("<sfile>"), ":h:h:h")
let s:prgpath = s:bundleDir."/js-beautify/python/".s:prgname
if executable(s:prgpath)
"If js-beautify is installed as a bundle
let b:formatprg=s:prgpath." ".s:arguments
else
"Else look for js-beautify globally
"or in the formatters/folder
call g:FindFormatter(s:prgname,s:arguments)
endif
"Set indenting behaviour to match with the formatter
set expandtab
set tabstop=4
set shiftwidth=4