Pat Walsh
Pat Walsh
Commenting to keep issue open. Included type annotations would be great.
comment
Similar problem here. Some of my crate workspaces seemingly work fine, while others consistently report that nothing was found. Things like: - `No symbols found in document ` for the...
You are correct; that fixed it. I was hoping it that setting would take a relative path from the root of my workspace since I was adding the setting to...
@matklad Did something in the extension change recently that now prevents it from auto-discovering projects that aren't at the root of the vscode workspace? I could've sworn it was working...
@matklad Interesting -- thanks!
> Could we change this to a configurable depth? Yes, please. Something like the recently implemented `git.repositoryScanMaxDepth` would be great (https://github.com/microsoft/vscode/issues/37947). Most often, my vscode workspace is a collection of...
@akhilles The Rust [docs](https://doc.rust-lang.org/reference/items/constant-items.html#:~:text=Constants%20are%20essentially%20inlined%20wherever%20they%20are%20used) state that "constants are essentially inlined." Does that mean that by setting `Crc::new()` to a `const`, it will be evaluated (i.e. table generated) every time the...
Makes sense, thanks! Just wasn't sure what happened under the hood.
comment