1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

[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";
/** return 1 on cancel. */
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";
/** return 1 on cancel. */
cancel-returns-1: true;
/** filter entries using regex */
filter-regex: "(.*cache.*|.*\.o)";
/** command */
command: "xdg-open";
}
}
```