rb_nav 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.markdown CHANGED
@@ -17,7 +17,7 @@ documentation-browsing features.
17
17
 
18
18
  ## Prerequisites
19
19
 
20
- * Ruby 1.8.6 (tested on 1.9.2)
20
+ * Ruby 1.9 or higher (tested on 1.9.2)
21
21
  * Vim 7.2 or higher
22
22
  * GNU grep 2.6.3 or higher (check your version with `grep -V`)
23
23
 
@@ -49,7 +49,7 @@ To change these keymappings, edit the two lines at the end of
49
49
  `~/.vim/plugin/rb_nav.vim`.
50
50
 
51
51
  * `CTRL-p` and `CTRL-n` let you navigate the drop-down matches
52
- * `<TAB><ENTER>` selects an item
52
+ * `<ENTER>` selects an item
53
53
  * `CTRL-e` closes the match list and lets you continue typing
54
54
  * `CTRL-u`: when the match list is active, cycles forward through the match
55
55
  list and what you've typed so far; when the match list is inactive, erases
@@ -1,4 +1,4 @@
1
1
  module RbNav
2
2
 
3
- VERSION = '0.1.4'
3
+ VERSION = '0.1.5'
4
4
  end
data/lib/rb_nav.vim CHANGED
@@ -4,7 +4,9 @@
4
4
 
5
5
  " This can be overridden in .vimrc
6
6
 
7
- let g:RbNavPaths = " . --exclude-dir='\.git' --exclude-dir='vendor' --exclude-dir='db' --include='*.rb' "
7
+ if !exists("g:RbNavPaths")
8
+ let g:RbNavPaths = " . --exclude-dir='\.git' --exclude-dir='vendor' --exclude-dir='db' --include='*.rb' "
9
+ endif
8
10
 
9
11
  let s:last_class_search = ""
10
12
  let s:selection_list = []
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rb_nav
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.4
5
+ version: 0.1.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi