mirror of
https://github.com/luzifer/vim.git
synced 2024-11-10 00:20:00 +00:00
11 lines
194 B
VimL
11 lines
194 B
VimL
|
if exists('g:loaded_shfmt_wrapper')
|
||
|
finish
|
||
|
endif
|
||
|
let g:loaded_shfmt_wrapper = 1
|
||
|
|
||
|
function! SHFmt()
|
||
|
let save_pos = getpos(".")
|
||
|
execute "%!shfmt -s"
|
||
|
call setpos(".", save_pos)
|
||
|
endfunction
|