.zip
파일을 열려고 합니다 vim
. 기본적으로 커서는 파일을 열 때 파일의 아래쪽을 가리킵니다. 파일을 연 후 즉시 커서를 파일의 시작 부분으로 이동하려면 어떻게 해야 합니까 zip
?
vim
파일을 연 직후에 파일의 시작 부분을 가리키 도록 기본 동작을 어떻게 변경할 수 있습니까 *.zip
?
답변1
다음 줄을 다음 항목에 추가하세요 ~/.vimrc
.
autocmd BufEnter *.zip :0
~에서빔 문서:
*BufEnter* BufEnter After entering a buffer. Useful for setting options for a file type. Also executed when starting to edit a buffer, after the BufReadPost autocommands.
zip 파일을 입력한 후 :0
실행해야 합니다(0번째 줄로 이동).
답변2
gg
또는 를 사용하여 :0
파일의 시작 부분으로 이동할 수 있습니다.
~에서:h gg
<C-Home> or *gg* *<C-Home>*
gg Goto line [count], default first line, on the first
non-blank character |linewise|. If 'startofline' not
set, keep the same column.