Add buffer switcher

This commit is contained in:
Simon Ser 2023-06-08 15:07:28 +02:00
parent fe016807da
commit 44a064274d
4 changed files with 202 additions and 3 deletions

View file

@ -94,6 +94,14 @@ export const keybindings = [
}
},
},
{
key: "k",
ctrlKey: true,
description: "Switch to a buffer",
execute: (app) => {
app.openDialog("switch");
},
},
];
export function setup(app) {