diff --git a/src/lib/utils/formatting.rs b/src/lib/utils/formatting.rs index ec0a628..ac3dc68 100644 --- a/src/lib/utils/formatting.rs +++ b/src/lib/utils/formatting.rs @@ -112,7 +112,6 @@ pub fn pretty_format_value( depth: usize, ) -> anyhow::Result<()> { // TODO: Handle tables with cyclic references - // TODO: Handle other types like function, userdata, ... match &value { LuaValue::Nil => write!(buffer, "nil")?, LuaValue::Boolean(true) => write!(buffer, "{COLOR_YELLOW}true{COLOR_RESET}")?,