rmux-core 0.10.0

Core session, pane, layout, format, hook, and buffer model for the RMUX terminal multiplexer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub(super) fn translate_acs(ch: char) -> char {
    match ch {
        'j' => '',
        'k' => '',
        'l' => '',
        'm' => '',
        'n' => '',
        'q' => '',
        't' => '',
        'u' => '',
        'v' => '',
        'w' => '',
        'x' => '',
        _ => ch,
    }
}