2024-01-06 19:41:35 +00:00
|
|
|
use std::fmt::{Display, Formatter};
|
|
|
|
|
2023-05-17 18:23:09 +00:00
|
|
|
use schemars::JsonSchema;
|
|
|
|
use serde::{Deserialize, Serialize};
|
2024-01-03 18:30:52 +00:00
|
|
|
use settings::Settings;
|
2023-05-17 18:23:09 +00:00
|
|
|
|
2024-01-17 22:31:21 +00:00
|
|
|
/// Base key bindings scheme. Base keymaps can be overridden with user keymaps.
|
2024-01-08 18:30:18 +00:00
|
|
|
///
|
|
|
|
/// Default: VSCode
|
2023-05-17 18:23:09 +00:00
|
|
|
#[derive(Copy, Clone, Debug, Serialize, Deserialize, JsonSchema, PartialEq, Eq, Default)]
|
|
|
|
pub enum BaseKeymap {
|
|
|
|
#[default]
|
|
|
|
VSCode,
|
|
|
|
JetBrains,
|
|
|
|
SublimeText,
|
|
|
|
Atom,
|
|
|
|
TextMate,
|
|
|
|
}
|
|
|
|
|
2024-01-06 19:41:35 +00:00
|
|
|
impl Display for BaseKeymap {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
match self {
|
|
|
|
BaseKeymap::VSCode => write!(f, "VSCode"),
|
|
|
|
BaseKeymap::JetBrains => write!(f, "JetBrains"),
|
|
|
|
BaseKeymap::SublimeText => write!(f, "Sublime Text"),
|
|
|
|
BaseKeymap::Atom => write!(f, "Atom"),
|
|
|
|
BaseKeymap::TextMate => write!(f, "TextMate"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-17 18:23:09 +00:00
|
|
|
impl BaseKeymap {
|
|
|
|
pub const OPTIONS: [(&'static str, Self); 5] = [
|
|
|
|
("VSCode (Default)", Self::VSCode),
|
|
|
|
("Atom", Self::Atom),
|
|
|
|
("JetBrains", Self::JetBrains),
|
|
|
|
("Sublime Text", Self::SublimeText),
|
|
|
|
("TextMate", Self::TextMate),
|
|
|
|
];
|
|
|
|
|
|
|
|
pub fn asset_path(&self) -> Option<&'static str> {
|
|
|
|
match self {
|
|
|
|
BaseKeymap::JetBrains => Some("keymaps/jetbrains.json"),
|
|
|
|
BaseKeymap::SublimeText => Some("keymaps/sublime_text.json"),
|
|
|
|
BaseKeymap::Atom => Some("keymaps/atom.json"),
|
|
|
|
BaseKeymap::TextMate => Some("keymaps/textmate.json"),
|
|
|
|
BaseKeymap::VSCode => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn names() -> impl Iterator<Item = &'static str> {
|
|
|
|
Self::OPTIONS.iter().map(|(name, _)| *name)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_names(option: &str) -> BaseKeymap {
|
|
|
|
Self::OPTIONS
|
|
|
|
.iter()
|
|
|
|
.copied()
|
|
|
|
.find_map(|(name, value)| (name == option).then(|| value))
|
|
|
|
.unwrap_or_default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-03 18:30:52 +00:00
|
|
|
impl Settings for BaseKeymap {
|
2023-05-17 18:23:09 +00:00
|
|
|
const KEY: Option<&'static str> = Some("base_keymap");
|
|
|
|
|
|
|
|
type FileContent = Option<Self>;
|
|
|
|
|
|
|
|
fn load(
|
|
|
|
default_value: &Self::FileContent,
|
|
|
|
user_values: &[&Self::FileContent],
|
2024-01-03 18:30:52 +00:00
|
|
|
_: &mut gpui::AppContext,
|
2023-05-17 18:23:09 +00:00
|
|
|
) -> anyhow::Result<Self>
|
|
|
|
where
|
|
|
|
Self: Sized,
|
|
|
|
{
|
|
|
|
Ok(user_values
|
|
|
|
.first()
|
|
|
|
.and_then(|v| **v)
|
|
|
|
.unwrap_or(default_value.unwrap()))
|
|
|
|
}
|
|
|
|
}
|