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 +2 -2
- data/lib/rb_nav/version.rb +1 -1
- data/lib/rb_nav.vim +3 -1
- metadata +1 -1
data/README.markdown
CHANGED
|
@@ -17,7 +17,7 @@ documentation-browsing features.
|
|
|
17
17
|
|
|
18
18
|
## Prerequisites
|
|
19
19
|
|
|
20
|
-
* Ruby 1.
|
|
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
|
-
* `<
|
|
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
|
data/lib/rb_nav/version.rb
CHANGED
data/lib/rb_nav.vim
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
" This can be overridden in .vimrc
|
|
6
6
|
|
|
7
|
-
|
|
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 = []
|