diff options
-rwxr-xr-x | ranger/config/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index 7978111b..0b61b6e4 100755 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -1756,7 +1756,7 @@ class grep(Command): def execute(self): if self.rest(1): - action = ['grep', '--line-number'] + action = ['grep', '-n'] action.extend(['-e', self.rest(1), '-r']) action.extend(f.path for f in self.fm.thistab.get_selection()) self.fm.execute_command(action, flags='p') |