17 lines
632 B
Python
17 lines
632 B
Python
import re
|
|
from thefuck.utils import replace_argument, for_app
|
|
|
|
|
|
@for_app('composer')
|
|
def match(command):
|
|
return (('did you mean this?' in command.stderr.lower()
|
|
or 'did you mean one of these?' in command.stderr.lower()))
|
|
|
|
|
|
def get_new_command(command):
|
|
broken_cmd = re.findall(r"Command \"([^']*)\" is not defined", command.stderr)[0]
|
|
new_cmd = re.findall(r'Did you mean this\?[^\n]*\n\s*([^\n]*)', command.stderr)
|
|
if not new_cmd:
|
|
new_cmd = re.findall(r'Did you mean one of these\?[^\n]*\n\s*([^\n]*)', command.stderr)
|
|
return replace_argument(command.script, broken_cmd, new_cmd[0].strip())
|