vscodehelper 0.2.1

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

pub fn main() -> eyre::Result<()> {
    common::init()?;
    let storage_json = VSCodeStorageJson::load_from_disk()?;
    dbg!(&storage_json);
    println!("The active theme is {theme}", theme = storage_json.theme);
    Ok(())
}