Made a simple script that colors the text on the fly, i use it mainly on one time notes so i dont have to define a new language on every other document. This script is currently killed by double click event, feel free to modify :) import re color = {} sc = 1 def getColor(line): global sc global color l = editor.getLine(line) if re.search('^[a-zA-Z0-9_]* := 0x[0-9a-fA-F]{6}',l) is not None: c = re.split('[ \n]',l) n = int(c[2],16) if n >= 0 and n <= 0xffffff: if c[0] in color: editor.styleSetFore(color[c[0]],...