diff options
-rw-r--r-- | main.c | 1 | ||||
-rw-r--r-- | syntax.c | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -12,7 +12,6 @@ FUTURE FEATURES: - CSS highlighting - option for separate colors for read/write highlights - styles ([color] sections) -- handle non-UTF8 file by using 0xD800-0xD8FF or something for raw bytes - make go-to-definition/hover/highlight modifier key configurable - return to previous location in buffer - font setting & support for multiple fonts to cover more characters @@ -62,7 +62,7 @@ enum { enum { SYNTAX_STATE_TED_CFG_STRING = 0x01u, // ` or "-delimited string - SYNTAX_STATE_TED_CFG_STRING_BACKTICK = 0x01u, // `-delimited string + SYNTAX_STATE_TED_CFG_STRING_BACKTICK = 0x02u, // `-delimited string }; typedef struct { |