Gvim creating the IDE's records, methods and steps for VIM
Http://blog.csdn.net/namecyf/article/details/7787479http://www.cnblogs.com/CodeWorkerLiMing/archive/2012/12/22 /2829330.html//some win Gvim tricks collection full Project Search http://www.cnblogs.com/xiekeli/archive/2012/08/13/2637176.html
Common plug-in installation methodsMs-windows in the method is generally extracted from the plugin file under the *.vim file under the Vim\vimfiles\plugin, the extracted Doc folder under the *.txt file into the Vim\vimfiles\doc folder, Then in the Execute Load document command to install the doc directory under the instructions File command, opened in Gvim, enter: Helptags dir, dir: C:\Program Files (x86) \vim\vimfiles\doc This is my installation directory, you can To copy the directory according to your specific situation, and then enter the command again in Gvim: Helptags *.txt
plugin types and FunctionsMy plug-ins here are very classic and easy to use plug-ins, in the corresponding functional areas are very famous, no alternative to the Vim\vimfiles\plugin folder. Vim plug-in function parsing ctags.vim//creating tags for indexes taglist.vim// Create a list of functions and variables, so that you can easily view a source file in the Variables and function table minibufexpl.vim//to find the variable definition when the BUF storage, convenient for you to look back Taglist.vim//display functions and variable list Grep.vim Full engineering find variable plug-in lookupfile.vim//find source file Sharp Weapon cscope.vim//find the definition and reference of variable
Fast solution to cmd under winRight in the directory directly out of the command CMD window symbol online shift+ Right-click Method can call cmd shortcut, if not can use the following method with Ec_menu software, this is a green software if you can find me to [email protected] Select point option, Then click on the ' mouse + ' pattern above to find the Open command prompt in the folder right
storage directory for pluginsEXE type of plug-ins are placed in the same directory as Gvim.exe C:\Program Files (x86) \vim\vim74 the current EXE type of plug-ins are: ctags//Build index plug-in, are using this WindowsGrep23// Search for Grep.vim Windows support files for variable plug-ins in the project
Use of CtagsCtags jump does not need to be a separate directory to write tags to VIMRC, automatic recognition, as long as the ctags part of my VIMRC settings to be
Gvim open files with multiple tabsNeed to restart the computer to take effect http://blog.sina.com.cn/s/blog_4177fa7f0100tirh.html registry hkey_classes_root\applications\gvim.exe\shell\ Edit\command changes its key value to
"C:\Program files\vim\vim72\gvim.exe"-P--remote-tab-silent "%1"
In fact, I just modified the registry, and I always opened it in the tab when I opened it.
questions about taglist do not show functions and variablesDo not appear in Chinese, you can display the
installation of Lookupfile.vimhttp://blog.163.com/lgh_2002/blog/static/44017526201061313442254/
Cscope plug-in installation, global search variable weaponhttp://www.vimer.cn/2009/10/%E5%9C%A8vimgvim%E4%B8%AD%E4%BD%BF%E7%94%A8cscope.htmlhttp://blog.csdn.net/ The cohowang/article/details/4393258windows under the
Cscope.exe,
Curses2.dll,
Regex2.dll
Put in
$ (VIM) \vim74//See what version of your gvim is my version is 74
Also cscope for Windows does not support the-Q option
Gvim creating the IDE's records, methods and steps for VIM