cosmic-terminal/src/key_bind.rs

10 lines
240 B
Rust
Raw Normal View History

use cosmic::widget::menu::key_bind::KeyBind;
use std::collections::HashMap;
2024-01-19 10:45:35 -07:00
use crate::Action;
2025-12-29 20:42:52 -08:00
use crate::shortcuts::ShortcutsConfig;
2024-01-19 10:45:35 -07:00
2025-12-29 20:42:52 -08:00
pub fn key_binds(shortcuts: &ShortcutsConfig) -> HashMap<KeyBind, Action> {
shortcuts.key_binds()
2024-01-19 10:45:35 -07:00
}