List the build buffer

This commit is contained in:
Krzosa Karol
2026-01-01 13:31:38 +01:00
parent 5b50a49416
commit c4b4460cbd
2 changed files with 3 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
! From a user (novice) point of view, how does it look like? ! 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) - 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 - Make all the keybinding / hook parsing initialize at the start to reduce runtime problems
- RegisterCommand should_appear_in_listing variable - RegisterCommand should_appear_in_listing variable

View File

@@ -121,7 +121,8 @@ void CMD_ShowBufferList() {
ResetBuffer(command_bar.buffer); ResetBuffer(command_bar.buffer);
For (Buffers) { For (Buffers) {
if (it->special || it->temp) { 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); RawAppendf(command_bar.buffer, "\n%S", it->name);
} }