diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-06-17 10:47:43 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-06-17 10:47:43 -0700 |
commit | f7382363c27b3f3fab53675a22197cd503e8661f (patch) | |
tree | a65cd82968f2ad8a728a45429e2d804d1d5c6e41 | |
parent | de699696c5367e9e3475929f14833ebd9dc24e4d (diff) | |
parent | 9ce9725bd6ecb56c4653eb4be4cd6e20ddd3a946 (diff) | |
download | text.love-f7382363c27b3f3fab53675a22197cd503e8661f.tar.gz |
Merge lines.love
-rw-r--r-- | colorize.lua | 5 |
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={ |