以下を に追加します.vimrc
。
" Restore cursor position, window position, and last search after running a
" command.
function! Preserve(command)
" Save the last search.
let search = @/
" Save the current cursor position.
let cursor_position = getpos('.')
" Save the current window position.
normal! H
let window_position = getpos('.')
call setpos('.', cursor_position)
" Execute the command.
execute a:command
" Restore the last search.
let @/ = search
" Restore the previous window position.
call setpos('.', window_position)
normal! zt
" Restore the previous cursor position.
call setpos('.', cursor_position)
endfunction
" Re-indent the whole buffer.
function! Indent()
call Preserve('normal gg=G')
endfunction
保存時にすべてのファイル タイプを自動インデントしたい場合は、このフックを に追加することを強くお勧め.vimrc
します。
" Indent on save hook
autocmd BufWritePre <buffer> call Indent()
保存時に特定のファイル タイプのみを自動インデントする場合は、手順に従ってください。保存時に C++ ファイルを自動インデントしたい場合は、次の~/.vim/after/ftplugin/cpp.vim
フックを作成して配置します。
" Indent on save hook
autocmd BufWritePre <buffer> call Indent()
~/.vim/after/ftplugin/java.vim
Java などの他のファイル タイプについても同様です。