syn-select icon indicating copy to clipboard operation
syn-select copied to clipboard

Lightweight path selector for searching Rust code

Results 1 syn-select issues
Sort by recently updated
recently updated
newest added

Based upon `cargo expand` issue [168](https://github.com/dtolnay/cargo-expand/issues/168) ``` struct MyType { foo: usize, } impl MyType { fn print_foo(&self) { println!("{}", self.foo); } } ``` It would be nice to be...