mirror of
https://github.com/nvbn/thefuck.git
synced 2025-02-23 21:39:32 +00:00
15 lines
233 B
Python
15 lines
233 B
Python
"""
|
|
This happens way too often
|
|
|
|
When typing really fast cause I'm a 1337 H4X0R,
|
|
I often fuck up 'ls' and type 'sl'. No more!
|
|
"""
|
|
|
|
|
|
def match(command):
|
|
return command.script == 'sl'
|
|
|
|
|
|
def get_new_command(command):
|
|
return 'ls'
|