documentation
This commit is contained in:
parent
c18feb49e6
commit
2f8c7d82c5
12
README.md
12
README.md
|
@ -46,7 +46,17 @@ vfind ~/nerd_tree/ "(.*)py" -i src
|
||||||
```
|
```
|
||||||
|
|
||||||
include the results that along the path have the name **src**.<br />
|
include the results that along the path have the name **src**.<br />
|
||||||
In a similar manner you can exclude paths with the option **-e**
|
You can include the -i more than once, for example:
|
||||||
|
|
||||||
|
```
|
||||||
|
vfind ~/nerd_tree/ "([0-9][0-9])|(^tree_(.*))" -i src -i .git
|
||||||
|
```
|
||||||
|
|
||||||
|
the above command will search for files or folders beginning with **two digits** or with the name beginning with **tree_**
|
||||||
|
only in the path ***src*** or ***.git***
|
||||||
|
|
||||||
|
|
||||||
|
In a similar manner you can exclude paths with the option **-e**, too in this case you can specify more than once the option -e
|
||||||
|
|
||||||
```
|
```
|
||||||
vfind ~/nerd_tree/ "(.*)py" -e src
|
vfind ~/nerd_tree/ "(.*)py" -e src
|
||||||
|
|
Loading…
Reference in New Issue