]> git.saurik.com Git - cycript.git/blobdiff - Highlight.cpp
Remove all Objective-C selector bridge definitions.
[cycript.git] / Highlight.cpp
index 0a077a8a7b58f0bb6bc43184f944508f627c85b1..7cb96ee84504a291113a50183ff5a570a9d756e1 100644 (file)
@@ -24,6 +24,7 @@
 
 #include "Cycript.tab.hh"
 #include "Driver.hpp"
+#include "Code.hpp"
 
 static void Skip(const char *data, size_t size, std::ostream &output, size_t &offset, cy::position &current, cy::position target) {
     while (current.line != target.line || current.column != target.column) {
@@ -79,6 +80,7 @@ void CYLexerHighlight(const char *data, size_t size, std::ostream &output, bool
             case hi::Meta: color = CYColor(false, 32); break;
             case hi::Nothing: color = CYColor(false, 0); break;
             case hi::Operator: color = CYColor(false, 36); break;
+            case hi::Special: color = CYColor(false, 35); break;
             case hi::Structure: color = CYColor(true, 34); break;
             case hi::Type: color = CYColor(true, 34); break;