Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
Kate
5dec098818
use the windows keymap 2025-08-25 16:15:11 +02:00
Kate
96460c8ba2
finish up the keymap for windows 2025-08-25 16:12:57 +02:00
Kate
fde98e3a7b
Initial keymap 2025-08-19 11:36:31 +02:00
2 changed files with 1196 additions and 1 deletions

File diff suppressed because it is too large Load diff

View file

@ -89,7 +89,10 @@ pub fn default_settings() -> Cow<'static, str> {
#[cfg(target_os = "macos")] #[cfg(target_os = "macos")]
pub const DEFAULT_KEYMAP_PATH: &str = "keymaps/default-macos.json"; pub const DEFAULT_KEYMAP_PATH: &str = "keymaps/default-macos.json";
#[cfg(not(target_os = "macos"))] #[cfg(target_os = "windows")]
pub const DEFAULT_KEYMAP_PATH: &str = "keymaps/default-windows.json";
#[cfg(not(any(target_os = "macos", target_os = "windows")))]
pub const DEFAULT_KEYMAP_PATH: &str = "keymaps/default-linux.json"; pub const DEFAULT_KEYMAP_PATH: &str = "keymaps/default-linux.json";
pub fn default_keymap() -> Cow<'static, str> { pub fn default_keymap() -> Cow<'static, str> {