rb_nav 0.1.9 → 0.2.0

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
@@ -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
- * `,N` navigate the classes and modules in your project
41
- * `,n` navigate the methods in the current file
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`.
@@ -1,4 +1,4 @@
1
1
  module RbNav
2
2
 
3
- VERSION = '0.1.9'
3
+ VERSION = '0.2.0'
4
4
  end
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>N :call <SID>autocomplete_classes()<cr>
163
- nnoremap <Leader>n :call <SID>autocomplete_methods()<cr>
162
+ nnoremap <Leader>n :call <SID>autocomplete_classes()<cr>
163
+ nnoremap <Leader>N :call <SID>autocomplete_methods()<cr>
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.9
5
+ version: 0.2.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi