'myvimrc'에 해당되는 글 1건
- 2012.02.22 Vim에서 수정한 부분 찾기
- Vim에서 수정한 부분 찾기
- 日常茶飯事
- 2012. 2. 22. 06:47
파일을 저장하기 전 어떤 부분을 수정했는지 보고 싶은 경우가 있다.
Eclipse에서는????
*svn과 연결되어 있으면 서버와 비교, 아니면 local history와 비교
71라인 : 변경, 1234를 9999로 변경
72라인 : 삭제
73라인 : 추가
정말 멋지다.
myvimrc
function! DiffPreview()
diffthis | vsplit | enew | set buftype=nofile | read # | 1delete | diffthis
endfunction
map \difl <ESC>:call DiffPreview()<CR>
diffthis | vsplit | enew | set buftype=nofile | read # | 1delete | diffthis
endfunction
map \difl <ESC>:call DiffPreview()<CR>
Recent comment