diff options
-rw-r--r-- | doc/ranger.pod | 1 | ||||
-rwxr-xr-x | ranger/config/commands.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/ranger.pod b/doc/ranger.pod index a69dc52d..7c5a7768 100644 --- a/doc/ranger.pod +++ b/doc/ranger.pod @@ -1220,6 +1220,7 @@ influence its behaviour: -m = mark the matching files after pressing enter -M = unmark the matching files after pressing enter -p = permanent filter: hide non-matching files after pressing enter + -r = interpret pattern as a regular expression pattern -s = smart case; like -i unless pattern contains upper case letters -t = apply filter and search pattern as you type -v = inverts the match diff --git a/ranger/config/commands.py b/ranger/config/commands.py index 36c21f70..7507b2b1 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -1131,6 +1131,7 @@ class scout(Command): -m = mark the matching files after pressing enter -M = unmark the matching files after pressing enter -p = permanent filter: hide non-matching files after pressing enter + -r = interpret pattern as a regular expression pattern -s = smart case; like -i unless pattern contains upper case letters -t = apply filter and search pattern as you type -v = inverts the match |