diff --git a/README.md b/README.md index adc04ab..5839a44 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,8 @@ foobar = 2 a = 3 ``` +Pro Tip: Use the AlignTab plugin for Sublime Text! + ## Vertical spacing Use at least one space left and one space right to equals signs, and one space right to colons. diff --git a/mentio.py b/mentio.py index 20fe41c..638eaf9 100644 --- a/mentio.py +++ b/mentio.py @@ -4,10 +4,10 @@ from re import compile as reg_compile from traceback import format_exc as print_traceback mentio_filename = "plugins/redstoner-utils.py.dir/files/mentio.json" -mentions = {} -max_amount = 3 -arrow = colorify(u"&r&7\u2192&r") -regex = reg_compile(u"\u00A7[\\da-fk-or]") +mentions = {} +max_amount = 3 +arrow = colorify(u"&r&7\u2192&r") +regex = reg_compile(u"\u00A7[\\da-fk-or]") try: mentions = json.loads(open(mentio_filename).read())