summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--TODO2
-rw-r--r--ranger/defaults/commands.py1
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):
'>118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172