about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--colorize.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/colorize.lua b/colorize.lua
index e42630a..6a0a7e5 100644
--- a/colorize.lua
+++ b/colorize.lua
@@ -6,8 +6,9 @@ Next_state = {
   normal={
     {prefix='--[[', target='block_comment'},  -- only single-line for now
     {prefix='--', target='comment'},
-    {prefix='"', target='dstring'},
-    {prefix="'", target='sstring'},
+    -- these don't mostly work well until we can change color within words
+    -- {prefix='"', target='dstring'},
+    -- {prefix="'", target='sstring'},
     {prefix='[[', target='block_string'},  -- only single line for now
   },
   dstring={