Skip to content

Commit

Permalink
Updated README.md and version to 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tester committed Nov 6, 2019
1 parent 2a1fd2c commit 80d4a65
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions plugin/cide.vim
Original file line number Diff line number Diff line change
@@ -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
"
Expand Down Expand Up @@ -2226,7 +2226,6 @@ nmap <Leader>e :Icalleetree<CR>
:menu <silent> &CIDE.CscopeCase :CscopeCase<CR>
:menu <silent> &CIDE.Save+Backup :SaveBackup<CR>
:menu <silent> &CIDE.Shell\ Commander :ShellCommander<CR>
:menu <silent> &CIDE.version\ 0\.7 :

" Define menu items under CodeTree
:menu <silent> &CIDE.-SepCodeTree- :
Expand All @@ -2238,6 +2237,8 @@ nmap <Leader>e :Icalleetree<CR>
:menu <silent> &CIDE.CTDeleteSubtree :DeleteSubtree<CR>
:menu <silent> &CIDE.CTDeleteUnder :DeleteUnder<CR>
:menu <silent> &CIDE.CTUniqueName :MyUniqueNames<CR>
:menu <silent> &CIDE.-SepVersion- :
:menu <silent> &CIDE.version\ 0\.8 :

" restore 'cpo'
let &cpo = s:cpo_save
Expand Down

0 comments on commit 80d4a65

Please sign in to comment.