nui 0.0.1

Experimental neovim RPC for UI clients
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug)]
pub struct PopupMenuShow {
    pub grid: i64,
    pub row: i64,
    pub column: i64,
    pub items: Vec<String>,
    pub selected: String,
}

#[derive(Debug)]
pub struct PopupMenuSelect {
    pub selected: String,
}