Files
thefuck/thefuck/rules/ag_literal.py
T
2017-08-31 17:58:56 +02:00

11 lines
210 B
Python

from thefuck.utils import for_app
@for_app('ag')
def match(command):
return command.output.endswith('run ag with -Q\n')
def get_new_command(command):
return command.script.replace('ag', 'ag -Q', 1)