rb_nav 0.1.1 → 0.1.2
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 +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