10 lines
228 B
VimL
10 lines
228 B
VimL
"Function for formatting the entire buffer
|
|
function! g:Autoformat()
|
|
"Save window state
|
|
let winview=winsaveview()
|
|
"Autoformat code
|
|
:silent exe "normal gggqG"
|
|
"Recall window state
|
|
call winrestview(winview)
|
|
endfunction
|