Feat: F1 F2 F3
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
use crate::page::Page;
|
||||
|
||||
pub fn bindings_for(page: Page) -> Vec<(&'static str, &'static str, &'static str)> {
|
||||
let mut bindings = Vec::new();
|
||||
|
||||
// Global bindings
|
||||
bindings.push(("Ctrl+←→↑↓", "Navigate", "Switch between views"));
|
||||
bindings.push(("q", "Quit", "Quit application"));
|
||||
bindings.push(("?", "Keybindings", "Show this help"));
|
||||
let mut bindings = vec![
|
||||
("F1–F6", "Go to view", "Dict/Patterns/Options/Help/Sequencer/Engine"),
|
||||
("Ctrl+←→↑↓", "Navigate", "Switch between adjacent views"),
|
||||
("q", "Quit", "Quit application"),
|
||||
("?", "Keybindings", "Show this help"),
|
||||
];
|
||||
|
||||
// Page-specific bindings
|
||||
match page {
|
||||
|
||||
Reference in New Issue
Block a user