mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-20 09:39:01 +00:00
20 lines
661 B
Python
20 lines
661 B
Python
import re
|
|
from thefuck.utils import replace_command, get_all_matched_commands, for_app
|
|
from thefuck.specific.sudo import sudo_support
|
|
|
|
|
|
@sudo_support
|
|
@for_app('lein')
|
|
def match(command, settings):
|
|
return (command.script.startswith('lein')
|
|
and "is not a task. See 'lein help'" in command.stderr
|
|
and 'Did you mean this?' in command.stderr)
|
|
|
|
|
|
@sudo_support
|
|
def get_new_command(command, settings):
|
|
broken_cmd = re.findall(r"'([^']*)' is not a task",
|
|
command.stderr)[0]
|
|
new_cmds = get_all_matched_commands(command.stderr, 'Did you mean this?')
|
|
return replace_command(command, broken_cmd, new_cmds)
|