|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
要明白学好linux不是一件一蹴而就的事,一定要能坚持使用它,特别是在使用初期。
从1970年入手下手,vi和vim就成了程序员最喜好的文本编纂器之一。5年前,我写了一个问本人名为“每一个程序员都应当晓得的100个vim命令”此次算是之前那篇文章的改善版,但愿你会喜好。
基本
:efilenameOpenfilenameforedition:wSavefile:qExitVim:q!Quitwithoutsaving:xWritefile(ifchangeshasbeenmade)andexit:savfilenameSavesfileasfilename.Repeatsthelastchangemadeinnormalmode5.Repeats5timesthelastchangemadeinnormalmode 在文件中挪动
korUpArrowmovethecursoruponelinejorDownArrowmovethecursordownonelineemovethecursortotheendofthewordbmovethecursortothebeginingoftheword0movethecursortothebeginingofthelineGmovethecursortotheendofthelineggmovethecursortothebeginingofthefileLmovethecursortotheendofthefile:59movecursortoline59.Replace59bythedesiredlinenumber.20|movecursortocolumn20.%Movecursortomatchingparenthesis[[Jumptofunctionstart[{Jumptoblockstart 剪切、复制和粘贴
yCopytheselectedtexttoclipboardpPasteclipboardcontentsddCutcurrentlineyyCopycurrentliney$CopytoendoflineDCuttoendofline 搜刮
/wordSearchwordfromtoptobottom?wordSearchwordfrombottomtotop*Searchthewordundercursor/cstringSearchSTRINGorstring,caseinsensitive/jo[ha]nSearchjohnorjoan/<theSearchthe,theatreorthen/the>Searchtheorbreathe/<the>Searchthe/< |
|