[VIM] Insert 모드에서 paste하기
잡설 vim 을 주력으로 쓰는 상황에서 마우스를 버리기 힘든 이유가 Insert모드에서 copy paste를 해야하는 경우가 많기 때문입니다. 특히나 Insert 모드에서 paste하기 위해선 esc 눌러서 Normal 모드로 간 다음 위치 조정해서 paste 하고 다시 i 로 Insert 모드로 재진입하는 번거러움은.. 정말 귀찮음 그 자체죠. 물론 vim 개발자 형님들이 만들었을거라는 생각은 했지만 그냥 마우스를 쓰는 방법이 있으니 그걸 찾기까지 생각이 미치지 못했죠. 그러다 우연한 계기(나중에 설명)로 방법을 찾게 되었고 reddit 댓글을 인용하자면 "this is sorcery!" 를 외치게 되었습니다. CTRL+R Normal 모드에서는 그냥 Redo입니다. vim 사용자는 다들 아시는 단축키죠. :help ^R CTRL-R Redo [count] changes which were undone. {Vi: redraw screen} 하지만 Insert 모드에서는 다릅니다. :help i^R CTRL-R {0-9a-z "%#*+:.-=} i_CTRL-R Insert the contents of a register . Between typing CTRL-R and the second character, '"' will be displayed to indicate that you are expected to enter the name of a register . The text is inserted as if you typed it, but mappings and abbreviatio...