stop highlighting strings in code

It works right so rarely that it's a net negative. I'll bring it back
if I ever start tokenizing on non-whitespace.
This commit is contained in:
Kartik K. Agaram 2023-06-17 10:41:50 -07:00
parent 1aceabc846
commit 9ce9725bd6
1 changed files with 3 additions and 2 deletions

View File

@ -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={