rb_nav 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +2 -5
- data/lib/rb_nav/version.rb +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
@@ -62,15 +62,12 @@ one.
|
|
62
62
|
|
63
63
|
By default RbNav searches files using these `grep` command flags:
|
64
64
|
|
65
|
-
let g:RbNavPaths = " . --exclude-dir='\.git' --exclude-dir='vendor'
|
65
|
+
let g:RbNavPaths = " . --exclude-dir='\.git' --exclude-dir='vendor' \
|
66
|
+
--exclude-dir='db' --include='*.rb' "
|
66
67
|
|
67
68
|
You can override these flags by reassigning `g:RbNavPaths` to something else in
|
68
69
|
a `.vimrc` files in your project's root directory.
|
69
70
|
|
70
|
-
let g:RbNavPaths = "app lib spec"
|
71
|
-
|
72
|
-
The directories should be separated by spaces.
|
73
|
-
|
74
71
|
|
75
72
|
## Bug reports and feature requests
|
76
73
|
|
data/lib/rb_nav/version.rb
CHANGED