added Pro Tip (tm)

This commit is contained in:
jomo
2014-07-16 00:39:25 +02:00
parent 433b2d3bbb
commit 195cf2c7ec
2 changed files with 6 additions and 4 deletions

View File

@@ -170,6 +170,8 @@ foobar = 2
a = 3 a = 3
``` ```
Pro Tip: Use the AlignTab plugin for Sublime Text!
## Vertical spacing ## Vertical spacing
Use at least one space left and one space right to equals signs, and one space right to colons. Use at least one space left and one space right to equals signs, and one space right to colons.

View File

@@ -4,10 +4,10 @@ from re import compile as reg_compile
from traceback import format_exc as print_traceback from traceback import format_exc as print_traceback
mentio_filename = "plugins/redstoner-utils.py.dir/files/mentio.json" mentio_filename = "plugins/redstoner-utils.py.dir/files/mentio.json"
mentions = {} mentions = {}
max_amount = 3 max_amount = 3
arrow = colorify(u"&r&7\u2192&r") arrow = colorify(u"&r&7\u2192&r")
regex = reg_compile(u"\u00A7[\\da-fk-or]") regex = reg_compile(u"\u00A7[\\da-fk-or]")
try: try:
mentions = json.loads(open(mentio_filename).read()) mentions = json.loads(open(mentio_filename).read())