diff options
| author | OpportunityLiu <[email protected]> | 2019-07-13 22:43:38 +0800 |
|---|---|---|
| committer | OpportunityLiu <[email protected]> | 2019-07-14 00:04:52 +0800 |
| commit | 6f49281f6397fbb876ea9f88a72fe47da36af89d (patch) | |
| tree | de132504ff17db49095af7c10f3078e257e8329a /xmake/themes/dark/xmake.lua | |
| parent | ef8f86298be7e2ed2dae96acef7077e252dc8ed3 (diff) | |
fix table dump style
Diffstat (limited to 'xmake/themes/dark/xmake.lua')
| -rw-r--r-- | xmake/themes/dark/xmake.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/themes/dark/xmake.lua b/xmake/themes/dark/xmake.lua index c0eb30c34..cb9c6a093 100644 --- a/xmake/themes/dark/xmake.lua +++ b/xmake/themes/dark/xmake.lua @@ -54,12 +54,14 @@ theme("dark") -- color dump set_text("dump.default_format", "<%s>") set_text("dump.udata_format", "[%s]") + set_text("dump.table_format", "{%s}") set_text("dump.anchor", "&%s") set_text("dump.reference", "*%s") set_color("dump.anchor", "yellow") set_color("dump.reference", "yellow") set_color("dump.default", "bright") set_color("dump.udata", "yellow") + set_color("dump.table", "bright") set_color("dump.string", "magenta bright") set_color("dump.string_quote", "magenta") set_color("dump.keyword", "blue") |
