[Doc] Add regex filtering to recursivebrowser.

This commit is contained in:
Dave Davenport 2023-06-11 18:17:12 +02:00
parent ee80c8487f
commit 92e730076d
2 changed files with 8 additions and 0 deletions

View File

@ -1205,6 +1205,10 @@ configuration {
directory: "/some/directory"; directory: "/some/directory";
/** return 1 on cancel. */ /** return 1 on cancel. */
cancel-returns-1: true; cancel-returns-1: true;
/** filter entries using regex */
filter-regex: "(.*cache.*|.*\\.o)";
/** command */
command: "xdg-open";
} }
} }

View File

@ -788,6 +788,10 @@ configuration {
directory: "/some/directory"; directory: "/some/directory";
/** return 1 on cancel. */ /** return 1 on cancel. */
cancel-returns-1: true; cancel-returns-1: true;
/** filter entries using regex */
filter-regex: "(.*cache.*|.*\.o)";
/** command */
command: "xdg-open";
} }
} }
``` ```