Editor fixes, code cleanup, bool colors, open dialog

This commit is contained in:
2024-10-05 14:57:11 +02:00
parent 9819b22019
commit 62c78fa14c
3 changed files with 160 additions and 65 deletions

View File

@@ -241,7 +241,7 @@ class TreeList implements Countable, IteratorAggregate
'string' => "\e[33m",
'integer' => "\e[94m",
'double' => "\e[96m",
'boolean' => "\e[35m",
'boolean' => ($value?"\e[92m":"\e[32m"),
'NULL' => "\e[31m",
default => "",
};