From 648432ef4618d4bc4d5ae2836088f45e7632f8a5 Mon Sep 17 00:00:00 2001 From: Amber Date: Mon, 8 Apr 2024 14:24:03 +0200 Subject: [PATCH] README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c64ed8..b7ce229 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ vfind ~/nerd_tree/ *py -i src You can include the -i more than once, for example: ``` -vfind ~/nerd_tree/ "([0-9][0-9])|(^tree_(.*))" -i src -i .git +vfind ~/nerd_tree/ -re "([0-9][0-9])|(^tree_(.*))" -i src -i .git ``` the above command will search for files or folders with a **two digits** name or with the name beginning with **tree_** @@ -78,5 +78,5 @@ 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/ -re "(.*)py" -e src ```