xrl 0.0.9

Xi Rpc Lib - Tokio based implementation of the RPC used in the Xi editor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, Serialize, Deserialize)]
pub struct AvailableThemes {
    pub themes: Vec<String>,
}

pub type ThemeSettings = ::syntect::highlighting::ThemeSettings;

#[derive(Debug, Serialize, Deserialize)]
pub struct ThemeChanged {
    pub name: String,
    pub theme: ThemeSettings,
}