lcode-config 0.4.0

config mod for [lcode](https://crates.io/crates/lcode)
Documentation
1
2
3
4
5
6
7
8
use lcode_config::keymap::TuiKeyMap;

#[test]
fn keymap_ser() {
    let a = TuiKeyMap::default();
    let a = toml::to_string(&a).unwrap();
    println!("{}", a);
}