From 4089777190c689e6f6464e2f5596fc7667a9914f Mon Sep 17 00:00:00 2001 From: Tomas Slusny Date: Fri, 29 Nov 2024 09:22:01 +0100 Subject: [PATCH] style: improve debug output readability Add empty lines between sections in debug info to make the output more readable and easier to scan visually. --- lua/CopilotChat/ui/debug.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/CopilotChat/ui/debug.lua b/lua/CopilotChat/ui/debug.lua index 4ab9ae81..be4b3b46 100644 --- a/lua/CopilotChat/ui/debug.lua +++ b/lua/CopilotChat/ui/debug.lua @@ -43,7 +43,9 @@ local function build_debug_info() ) ) end + table.insert(lines, '') end + table.insert(lines, 'Current buffer outline:') table.insert(lines, '`' .. buf.filename .. '`') table.insert(lines, '```' .. buf.filetype)