From 80d4a657bdd1e5a3f114b792f88f613d61f55477 Mon Sep 17 00:00:00 2001 From: tester Date: Tue, 5 Nov 2019 22:37:09 -0800 Subject: [PATCH] Updated README.md and version to 0.8 --- README.md | 14 ++++++++++---- plugin/cide.vim | 7 ++++--- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7ad9295..2e6a723 100644 --- a/README.md +++ b/README.md @@ -46,17 +46,23 @@ Note the default Leader key is '\' # Installation * Dependencies - * silver seracher (ag) can be downloaded from [https://github.com/ggreer/the_silver_searcher](https://github.com/ggreer/the_silver_searcher) - * cscope can be downloaded from [http://cscope.sourceforge.net/](http://cscope.sourceforge.net/) + * silver seracher (ag): can be downloaded from [https://github.com/ggreer/the_silver_searcher](https://github.com/ggreer/the_silver_searcher) + * cscope: can be downloaded from [http://cscope.sourceforge.net/](http://cscope.sourceforge.net/) + * find: windows version can be found under C:/Program Files/Git/usr/bin/find.exe if Git was installed * Manual installation * Download this plugin from [https://github.com/tristar2001/vim-cide](https://github.com/tristar2001/vim-cide) * Copy downloaded cide.vim to vimfiles/plugin/ folder * Vundle installation - * TBD + * Prerequisite: install Vundle from [https://github.com/VundleVim/Vundle.vim](https://github.com/VundleVim/Vundle.vim) + * Insert the following line in .vimrc (or \_vimrc), after "Plugin 'VundleVim/Vundle.vim'", and before "call vundle#end()" + ```vim + Plugin 'tristar2001/vim-cide' + ``` + * Execute :PluginInstall # Configuration * The following global variables can be configured from .vimrc or \_vimrc -Note this step is optional. And it's needed only if a customization is needed +Note this step is optional. And it's usually needed when any of the following commands (like find.exe) is not in searchable paths ```vim " C-IDE configuration diff --git a/plugin/cide.vim b/plugin/cide.vim index ef3afed..ff07889 100644 --- a/plugin/cide.vim +++ b/plugin/cide.vim @@ -1,6 +1,6 @@ " Description: C-IDE vim plugin -" Version: 0.7 -" Last Modified: 10/02/2019 +" Version: 0.8 +" Last Modified: 11/05/2019 " " MIT License " @@ -2226,7 +2226,6 @@ nmap e :Icalleetree :menu &CIDE.CscopeCase :CscopeCase :menu &CIDE.Save+Backup :SaveBackup :menu &CIDE.Shell\ Commander :ShellCommander -:menu &CIDE.version\ 0\.7 : " Define menu items under CodeTree :menu &CIDE.-SepCodeTree- : @@ -2238,6 +2237,8 @@ nmap e :Icalleetree :menu &CIDE.CTDeleteSubtree :DeleteSubtree :menu &CIDE.CTDeleteUnder :DeleteUnder :menu &CIDE.CTUniqueName :MyUniqueNames +:menu &CIDE.-SepVersion- : +:menu &CIDE.version\ 0\.8 : " restore 'cpo' let &cpo = s:cpo_save