mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05:00
Order buffers by priority in Alt+a
This commit is contained in:
parent
958b6bf120
commit
e38f35c578
2 changed files with 12 additions and 5 deletions
|
@ -27,16 +27,20 @@ export const keybindings = [
|
|||
altKey: true,
|
||||
description: "Jump to next buffer with activity",
|
||||
execute: (app) => {
|
||||
// TODO: order by priority, then by age
|
||||
// TODO: order by age if same priority
|
||||
var firstServerBuffer = null;
|
||||
var target = null;
|
||||
for (var buf of app.state.buffers.values()) {
|
||||
if (!firstServerBuffer && buf.type === BufferType.SERVER) {
|
||||
firstServerBuffer = buf;
|
||||
}
|
||||
if (buf.unread != Unread.NONE) {
|
||||
|
||||
if (buf.unread === Unread.NONE) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!target || Unread.compare(buf.unread, target.unread) > 0) {
|
||||
target = buf;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!target) {
|
||||
|
|
7
state.js
7
state.js
|
@ -15,13 +15,16 @@ export const Unread = {
|
|||
MESSAGE: "message",
|
||||
HIGHLIGHT: "highlight",
|
||||
|
||||
union(a, b) {
|
||||
compare(a, b) {
|
||||
const priority = {
|
||||
[Unread.NONE]: 0,
|
||||
[Unread.MESSAGE]: 1,
|
||||
[Unread.HIGHLIGHT]: 2,
|
||||
};
|
||||
return (priority[a] > priority[b]) ? a : b;
|
||||
return priority[a] - priority[b];
|
||||
},
|
||||
union(a, b) {
|
||||
return (Unread.compare(a, b) > 0) ? a : b;
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue