Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # hapus all line
- # go to first line, tekan ESC
- gg
- # kemudian
- dG
- # bisa juga replace dengan file kosong
- cat /dev/null > file
- # pencarian text, ketik / diikuti kata yang dicari
- # jump to first
- ggn
- # jump to the last
- GN
- # To turn off highlighting until the next search
- :noh
- # Or turn off highlighting completely
- set nohlsearch
- # To clear the last used search pattern
- :let @/ = ""
- # delete line
- dd
- # begin character-based visual selection
- v
- # select whole lines
- V
- # delete
- d
- # copy
- y
- # paste after cursor
- p
- # paste before cursor
- P
- # undo
- :u # or u in visual
- # redo
- CTRL+R
- # select line and paste
- v # to select text
- d # to cut or y to copy
- # go to line where to paste
- p # to paste
- gg=G # indent from top
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement