diff --git a/README.md b/README.md index d1bd639..16faba4 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,17 @@ vfind ~/nerd_tree/ "(.*)py" -i src ``` include the results that along the path have the name **src**.
-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