rb_nav 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -52,8 +52,7 @@ To change these keymappings, edit the two lines at the end of
52
52
  * both `TAB` and `CTRL-x CTRL-u` reactivates autocompletion if it's gone away
53
53
  * `CTRL-y` selects the highlighted match without triggering ENTER
54
54
 
55
-
56
-
55
+ Autocompletion is case-insensitive.
57
56
 
58
57
  ### The search path
59
58
 
data/lib/rb_nav.vim CHANGED
@@ -58,7 +58,7 @@ function! AutocompleteRbNavClasses(findstart, base)
58
58
  for m in s:selection_list
59
59
  " why doesn't case insensitive flag work?
60
60
  if m =~ '\c'.substitute(a:base, '\*', '\\*', '')
61
- call add(res, m)
61
+ call add(res, {'word': m, 'icase': 1})
62
62
  endif
63
63
  endfor
64
64
  return res
@@ -1,4 +1,4 @@
1
1
  module RbNav
2
2
 
3
- VERSION = '0.2.3'
3
+ VERSION = '0.2.4'
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.3
5
+ version: 0.2.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi