List the build buffer
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user