From c4b4460cbd06095afce6e1f6db214ffa28e19756 Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Thu, 1 Jan 2026 13:31:38 +0100 Subject: [PATCH] List the build buffer --- src/backup/todo.txt | 1 + src/text_editor/window_command.cpp | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/backup/todo.txt b/src/backup/todo.txt index 0d51cae..60ffb5a 100644 --- a/src/backup/todo.txt +++ b/src/backup/todo.txt @@ -2,6 +2,7 @@ ! From a user (novice) point of view, how does it look like? - Make a fuzzy command !> grep and fuzzy over it??? (doesn't seem very useful for grep) +- Maybe wheel click should scroll??? PROBABLY - Make all the keybinding / hook parsing initialize at the start to reduce runtime problems - RegisterCommand should_appear_in_listing variable diff --git a/src/text_editor/window_command.cpp b/src/text_editor/window_command.cpp index 2dac98a..32fa513 100644 --- a/src/text_editor/window_command.cpp +++ b/src/text_editor/window_command.cpp @@ -121,7 +121,8 @@ void CMD_ShowBufferList() { ResetBuffer(command_bar.buffer); For (Buffers) { if (it->special || it->temp) { - if (it->id != NullBufferID) continue; + if (it->id != NullBufferID && it->id != BuildBufferID) continue; + } RawAppendf(command_bar.buffer, "\n%S", it->name); }