1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-15 07:08:49 +00:00
2015-05-08 11:41:26 +02:00

13 lines
417 B
Python

def match(command, settings):
split_command = command.script.split()
return len(split_command) >= 2 and split_command[0] == split_command[1]
def get_new_command(command, settings):
return command.script[command.script.find(' ')+1:]
# it should be rare enough to actually have to type twice the same word, so
# this rule can have a higher priority to come before things like "cd cd foo"
priority = 900