
Vim
键盘上的疯兔
乐于钻研问题背后的规律,并乐于编程证实。
展开
-
Vim快速选中、删除、复制引号或括号中的内容
Vim快速选中、删除、复制引号或括号中的内容最近刚刚发现了一些VIM中,快速对引号或括号等标点内的内容进行选中、删除、复制操作的超级技巧,感觉非常实用。可以极大的提高编辑效率。以下命令可以对标点内的内容进行操作。ci'、ci"、ci(、ci[、ci{、cidi'、di"、di(或dib、di[、di{或diB、diyi'、yi"、yi(、yi[、yi{、yivi'、vi"、转载 2012-04-17 17:35:19 · 7924 阅读 · 0 评论 -
解决win平台下gvim打开utf-8编码档案乱码问题
这里只说说简单的让gvim正确识别各种编码的方法:出于方便,用win平台下的gvim去编程配置文件,发觉一打开utf-8文档只能显示乱码,google一下,发觉很多是在_vimrc加入这几个参数:set encoding=cp936set termencoding=utf-8set fileencoding=chineseset fileencodings=ucs-bom,u转载 2012-05-03 17:13:56 · 3282 阅读 · 2 评论 -
VIM插件管理工具Vundle安装
Vundle安装软件环境:WIN7 32bit GVIM 1.安装git 除PATH环境变量设置如图以外,其它选项默认:2.添加curl.cmd,位置为C:\Program Files\Git\cmd,假设git安装在C:\Program Files\Git3.修改vimrc4.下载vundle。git clone http://github.com/gmarik/vu原创 2012-07-03 16:13:31 · 6385 阅读 · 0 评论 -
为VC系统头文件生成tags
@echo offrem 用法:把些文件命名为vctag.bat,放在系统目录下,在命令行中运行vctag filenamerem 功能:本批处理是针对VC编写的。为filename的include树中的所有文件,在当前目录,生成tags文件,方便其它编辑器(如VIM)使用。rem 备注:此文件依赖于CTAGS工具和VC编译器。ctags官网http://ctags.sourceforge.原创 2012-08-30 22:15:23 · 1724 阅读 · 0 评论 -
GVIM脚本——打开当前文件所在位置
function OpenFileLocation() if ( expand("%") != "" ) execute "!start explorer /select, %" else execute "!start explorer /select, %:p:h" endifendfunctionmap gb :call OpenFileLocation()"我的第原创 2012-08-23 00:40:09 · 3321 阅读 · 0 评论 -
Solution of Vim E303 Error under Win 7
ViM: Unable to open swap fileProblem1E303: Unable to open swap file for "[No Name]", recovery impossibleYou might see this error while using ViM as a standard u转载 2013-11-17 13:16:55 · 2324 阅读 · 0 评论 -
VIM中常用序列生成及数值转换
"output A-Zexe "let i=65|while i<=90|put =printf('%c', i)|let i=i+1|endwhile""output '0-9A-F'exe "let i=0|while i<16|put =printf('%X', i)|let i=i+1|endwhile""ascii to numberecho char2nr('a')"原创 2013-01-15 22:49:24 · 1989 阅读 · 0 评论 -
vim水平摆放所有窗口的三个方法
Method1: map :windo exe "normal \C-W>K"Method2: map :windo wincmd KMethod3: map :call HorizontAll()function! HorizontAll() windo exe "normal \K"endfunction小结:1 map {rhs} 的字串中,ctrl原创 2014-09-04 09:31:09 · 3049 阅读 · 0 评论