vscodehelper 0.2.0

Understanding the data that VSCode writes to disk
Documentation
1
2
3
4
5
6
7
8
9
10
use vscodehelper::storage_json::VSCodeStorageJson;

pub fn main() -> eyre::Result<()> {
    common::init()?;
    let storage_json = VSCodeStorageJson::load_from_disk()?;
    for window in &storage_json.windows_state.opened_windows {
        println!("{window:#?}");
    }
    Ok(())
}