40 lines
873 B
Plaintext
40 lines
873 B
Plaintext
using Gtk 4.0;
|
|
|
|
ShortcutsWindow helpWindow {
|
|
modal: true;
|
|
can-focus: false;
|
|
|
|
ShortcutsSection {
|
|
ShortcutsGroup {
|
|
title: "General";
|
|
|
|
ShortcutsShortcut {
|
|
accelerator: "Up k";
|
|
title: "Previous / Up";
|
|
}
|
|
ShortcutsShortcut {
|
|
accelerator: "Down j";
|
|
title: "Next / Down";
|
|
}
|
|
|
|
ShortcutsShortcut {
|
|
accelerator: "h question";
|
|
title: "Display keyboard help";
|
|
}
|
|
ShortcutsShortcut {
|
|
accelerator: "q";
|
|
title: "Quit";
|
|
}
|
|
}
|
|
ShortcutsGroup {
|
|
title: "Realm";
|
|
|
|
ShortcutsShortcut {
|
|
accelerator: "c";
|
|
title: "Configure selected Realm";
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|