vscodehelper 0.2.0

Understanding the data that VSCode writes to disk
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use vscodehelper::state_vscdb::VSCodeStateVscdb;

pub fn main() -> eyre::Result<()> {
    common::init()?;
    let mut state_vscdb = VSCodeStateVscdb::try_default()?;
    let keys = state_vscdb.keys()?;
    println!("Keys in state_vscdb:");
    for key in keys.iter() {
        println!("  - {}", key);
    }
    Ok(())
}