diff options
author | Marius Kintel <marius@kintel.net> | 2013-04-17 21:27:49 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-04-17 21:27:49 (GMT) |
commit | c42dcfc614995863aaaf5197a298b8de486d1c1e (patch) | |
tree | 557e975228ccd4d429388fd6b22bb89a374a5d46 | |
parent | c5bdc40c26728dbcaa1bfb7f00e82b7448f32d62 (diff) |
Added missing highlighting of some special variables
-rw-r--r-- | src/highlighter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/highlighter.cc b/src/highlighter.cc index 391e3a5..bf80bb4 100644 --- a/src/highlighter.cc +++ b/src/highlighter.cc @@ -151,7 +151,7 @@ Highlighter::Highlighter(QTextDocument *parent) tokentypes["import"] << "include" << "use" << "import_stl" << "import" << "import_dxf" << "dxf_dim" << "dxf_cross"; typeformats["import"].setForeground(Qt::darkYellow); - tokentypes["special"] << "$children" << "child" << "$fn" << "$fa" << "$fb"; + tokentypes["special"] << "$children" << "child" << "$fn" << "$fa" << "$fs" << "$t" << "$vpt" << "$vpr"; typeformats["special"].setForeground(Qt::darkGreen); tokentypes["extrude"] << "linear_extrude" << "rotate_extrude"; |