diff options
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | ranger/defaults/commands.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/TODO b/TODO index e91a1598..c809065c 100644 --- a/TODO +++ b/TODO @@ -80,7 +80,7 @@ Bugs (X) #73 10/03/21 when clicking on the first column, it goes 1x down (X) #74 10/03/21 console doesn't scroll (X) #78 10/03/31 broken preview when deleting all files in a directory - ( ) #85 10/04/26 no automatic reload of directory after using :filter + (X) #85 10/04/26 no automatic reload of directory after using :filter Ideas diff --git a/ranger/defaults/commands.py b/ranger/defaults/commands.py index b53cce62..bfe038c5 100644 --- a/ranger/defaults/commands.py +++ b/ranger/defaults/commands.py @@ -465,6 +465,7 @@ class filter(Command): def execute(self): line = parse(self.line) self.fm.set_filter(line.rest(1)) + self.fm.reload_cwd() class grep(Command): |