xrl 0.0.5

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
13
14
15
16
17
use ViewId;

#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct ConfigChanged {
    view_id: ViewId,
    changes: ConfigChanges
}

#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct ConfigChanges {
    font_face: Option<String>,
    font_size: Option<u64>,
    line_ending: Option<String>,
    plugin_search_path: Option<Vec<String>>,
    tab_size: Option<u64>,
    translate_tabs_to_spaces: Option<bool>,
}