rb_nav 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/rb_nav/version.rb +1 -1
  2. data/lib/rb_nav.vim +1 -1
  3. metadata +1 -1
@@ -1,4 +1,4 @@
1
1
  module RbNav
2
2
 
3
- VERSION = '0.0.3'
3
+ VERSION = '0.0.4'
4
4
  end
data/lib/rb_nav.vim CHANGED
@@ -68,7 +68,7 @@ function! AutocompleteRbNavClasses(findstart, base)
68
68
  endfun
69
69
 
70
70
  func! RbNavClasses()
71
- let command = "grep -rn ".g:RbNavPaths." --exclude-dir=.git --include='*.rb' -e '^\\s*\\(class\\|module\\) \\+[A-Z]' | rb_nav_classes | sort"
71
+ let command = "grep -rn ".g:RbNavPaths." --exclude='.git/*' --include='*.rb' -e '^\\s*\\(class\\|module\\) \\+[A-Z]' | rb_nav_classes | sort"
72
72
  let res = system(command)
73
73
  return split(res, "\n")
74
74
  endfunc
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rb_nav
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.3
5
+ version: 0.0.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi