rb_nav 0.1.9 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +2 -2
- data/lib/rb_nav/version.rb +1 -1
- data/lib/rb_nav.vim +2 -2
- metadata +1 -1
data/README.markdown
CHANGED
@@ -37,8 +37,8 @@ For the all the commands below, the mapleader is assumed to be `,`. If it is
|
|
37
37
|
|
38
38
|
### Invoking the plugin
|
39
39
|
|
40
|
-
* `,
|
41
|
-
* `,
|
40
|
+
* `,n` navigate the classes and modules in your project
|
41
|
+
* `,N` navigate the methods in the current file
|
42
42
|
|
43
43
|
To change these keymappings, edit the two lines at the end of
|
44
44
|
`~/.vim/plugin/rb_nav.vim`.
|
data/lib/rb_nav/version.rb
CHANGED
data/lib/rb_nav.vim
CHANGED
@@ -159,5 +159,5 @@ func! s:jump_to_method()
|
|
159
159
|
call feedkeys("z\<cr>", "t")
|
160
160
|
endfunc
|
161
161
|
|
162
|
-
nnoremap <Leader>
|
163
|
-
nnoremap <Leader>
|
162
|
+
nnoremap <Leader>n :call <SID>autocomplete_classes()<cr>
|
163
|
+
nnoremap <Leader>N :call <SID>autocomplete_methods()<cr>
|