rb_nav 0.2.3 → 0.2.4
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 +1 -2
- data/lib/rb_nav.vim +1 -1
- data/lib/rb_nav/version.rb +1 -1
- metadata +1 -1
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
|
data/lib/rb_nav/version.rb
CHANGED