Vim Easily Remove Swap File
First, You should set set dir={somepath}
in ~/.vimrc
, swap files are
located in {somepath}
. {somepath}
is set where you want.
= 먼저, swap file이 생성될 디렉터리 경로인 {somepath}
을 정하고,
~/.vimrc
에 set dir={somepath}
를 추가한다.
set dir=~/.vim/temp
And, Append a function as follow in ~/.vimrc
= 그리고, ~/.vimrc
에 아래의 함수를 추가한다.
function! DeleteSwap()
exec('! rm ' . &dir . '/' . @% . '.swp')
endfunction
Finally, You can call above function in a file which is notified of existing swap
file by vim.
= 마지막으로, vim으로부터 swap 파일이 존재한다는 알림을 받은 파일에서 함수를
호출 할 수 있다.
call Deleteswap()
댓글남기기