diff --git a/thefuck/rules/remove_trailing_cedilla.py b/thefuck/rules/remove_trailing_cedilla.py new file mode 100644 index 00000000..9439c06c --- /dev/null +++ b/thefuck/rules/remove_trailing_cedilla.py @@ -0,0 +1,6 @@ +def match(command): + return command.script.endswith('รง') + +def get_new_command(command): + return command.script[:-1] +