rb_nav 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -39,7 +39,7 @@ For the all the commands below, the mapleader is assumed to be `,`. If it is
39
39
  ### Invoking the plugin
40
40
 
41
41
  * `,n` navigate the classes and modules in your project
42
- * `,nn` navigate the methods in the current file
42
+ * `,,n` navigate the methods in the current file
43
43
 
44
44
  To change these keymappings, edit the two lines at the end of
45
45
  `~/.vim/plugin/rb_nav.vim`.
@@ -159,4 +159,4 @@ endfunc
159
159
 
160
160
 
161
161
  nnoremap <Leader>n :call <SID>autocomplete_classes()<cr>
162
- nnoremap <Leader>nn :call <SID>autocomplete_methods()<cr>
162
+ nnoremap <Leader><Leader>n :call <SID>autocomplete_methods()<cr>
@@ -1,4 +1,4 @@
1
1
  module RbNav
2
2
 
3
- VERSION = '0.2.7'
3
+ VERSION = '0.2.8'
4
4
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rb_nav
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.2.7
5
+ version: 0.2.8
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi