diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-06-17 10:48:09 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-06-17 10:48:09 -0700 |
commit | 775c78e083f05c60b682900b0c4cfd4bf754f8fe (patch) | |
tree | 87b18d9a50fbed3b6264b026cd4f14e95a463cf3 | |
parent | 4409d203ed77ecd49d010a4d7d3d648158260ff6 (diff) | |
parent | f7382363c27b3f3fab53675a22197cd503e8661f (diff) | |
download | view.love-775c78e083f05c60b682900b0c4cfd4bf754f8fe.tar.gz |
Merge text.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={ |