You May Also Enjoy
#TIL #vim OS 클립보드를 사용해 복사하고 붙이기
less than 1 minute read
"+p
#TIL #vim 범위에 매크로 실행을 하고 싶다면
less than 1 minute read
SomeModule.some_func(1, 2, 3) SomeModule.some_func(1, 3, 4, 5) SomeModule.some_func(1, 4, 5, 6, 7) SomeModule.some_func(1, 5, 6, 7, 8, 9) SomeModule.some_fun...
#TIL #vim :s 명령어에서 현재 커서 단어를 입력하기
less than 1 minute read
:%s/foo/<c-r><c-w>/g Replace each occurrence of ’foo’ with the word under the cursor. means that you press Ctrl-R then Ctrl-W The word u...
#TIL #vim b 키와 방향은 같지만 도착지는 다른 ge 키
less than 1 minute read
| ge | Backward to the end of word | | gE | Backward to the end of WORD |