
vim
文章平均质量分 54
_kaka
这个作者很懒,什么都没留下…
展开
-
vim Search
1 大小写set smartcaseset ignorecaseset noignorecase2 When set nowrapscan,when the search hits the end of the file,an error message displaysset no原创 2013-09-25 23:24:55 · 779 阅读 · 0 评论 -
vim Sessions
1 The following command creates a session file::mksession file2 Later if you want to resotre this session,you can use this command::source file 3 If you want原创 2013-09-28 21:48:02 · 623 阅读 · 0 评论 -
vim Buffer
1 You can explicitly add it with the following command::badd file2 Delete a buffer,The :bdelete command deletes a buffer,You can specify the buff by name:bdelete file.c原创 2013-09-28 21:34:10 · 740 阅读 · 0 评论 -
vim Visual Mode
1 The $ commandIn the block visual mode ,the $ command causees the selection to be extended to the end of all the lines in the selection2 Selecting ObjectsThe 'aw' command ,f原创 2013-09-28 22:22:32 · 971 阅读 · 0 评论 -
vim windows
1 CTRL-Wj goes to the next window and CTRL-Wk goes to the preceding oneCTRL-Wt Go to the top windowCTRL-Wb Go to the bottom windowCTRL-Wp Go to the window原创 2013-09-28 01:19:56 · 584 阅读 · 0 评论 -
vim viminfo
The viminfo file is designed to store information on marks as well as the following:Command-line historySearch-string historyInput-line historyRegistersMarksBuffer listGlobal variables原创 2013-09-28 00:33:22 · 1194 阅读 · 0 评论 -
vim ide 配置
原贴:http://blog.youkuaiyun.com/bokee/article/details/6633193工欲善其事,必先利其器。一个强大的开发环境可以大大提高工作效率。好吧,我知道这是废话。。。不过,我想一定有很多跟我一样打算进入Linux平台开发的新手,一开始都为找不到一个像Windows下的VS那样可以一键安装并且功能几乎完美无缺的开发工具而郁闷不已,甚至打算转载 2013-09-26 21:22:11 · 623 阅读 · 0 评论 -
vim Multiple Registers
1 "ayy yy puts the current line in the a register When you use the uppercase versino of a register ,say "Ayy ,you append the text to what is already in the原创 2013-09-26 23:48:43 · 806 阅读 · 0 评论 -
vim 中Ctags的安装和使用
原贴:http://blog.youkuaiyun.com/duguteng/article/details/7412652这两天看到网上有将vim 改造成功能强大的IDE的blog,突然心血来潮,亲身经历了一下。网友的帖子都不错,我这里只是将各种插件分开罗列,然后加上一些使用技巧。希望本文对你有所帮助!『插件介绍』Ctags工具是用来遍转载 2013-09-26 21:20:41 · 557 阅读 · 0 评论 -
vim python map exec
map :call CompileRun()func CompileRun() exec 'w' if &filetype == 'python' exec '!/usr/bin/python3 %' endifendfunc原创 2013-09-26 20:52:02 · 780 阅读 · 0 评论 -
vim Select Mode
gh Start characterwise selectiongH Start linewise selectiongCTRL-H Start block selectionCTRL-O command switches from selection mode to visual mode for one command.CTRL-G co原创 2013-09-28 23:04:54 · 2713 阅读 · 0 评论