글
Use of vim 2016년 9월 21일 수요일
프로그래밍/english
2016. 12. 3. 23:44
I think good programmer is learning various knowledge and
having various programming skills.
having various programming skills.
But, I think used to programming toos is important recently.
Vim is good editor for programmer.
Simple use of vim
vim filename : open filename
view filename : open filename read only (I think it is useless)
:q! : quit no save
:wq : save and quit
i : insert character before cursor
I : insert character before line
o : insert character under line
O : insert character upper line
a : insert character after cursor
A : insert character after line
w : right direction next word last character
e : right direction next word first character
b : previous word last character
dd : line delete
1,10d : 1 ~ 10 lines delete
yy : paste
h : left
j : down
k : up
l : right
^ : first of line
$ : last of line
For beginner, this is sufficient
'프로그래밍 > english' 카테고리의 다른 글
Fast screen capture in python. 2016년 10월 5일 수요일 (0) | 2016.12.03 |
---|---|
Using GPIO in Raspberry pi 2016년 9월 21일 수요일 (0) | 2016.12.03 |