mirror of
https://github.com/nvbn/thefuck.git
synced 2025-04-11 21:30:45 +01:00
14 lines
373 B
Python
14 lines
373 B
Python
def match(command, settings):
|
|
return command.script.startswith('man')
|
|
|
|
|
|
def get_new_command(command, settings):
|
|
if '3' in command.script:
|
|
return command.script.replace("3", "2")
|
|
if '2' in command.script:
|
|
return command.script.replace("2", "3")
|
|
|
|
split_cmd = command.script.split()
|
|
split_cmd.insert(1, ' 3 ')
|
|
return "".join(split_cmd)
|