19 lines
450 B
VimL
19 lines
450 B
VimL
"Function for formatting the entire buffer
|
|
function! s:Autoformat()
|
|
"If a formatprg is specified
|
|
if &formatprg!=""
|
|
"echo "formatprg is: ".&formatprg
|
|
"Save window state
|
|
let winview=winsaveview()
|
|
"Autoformat code
|
|
:silent exe "normal gggqG"
|
|
"Recall window state
|
|
call winrestview(winview)
|
|
else
|
|
echo "No formatter installed for this filetype"
|
|
endif
|
|
endfunction
|
|
|
|
"Create a command for this
|
|
command Autoformat call s:Autoformat()
|