I have the following directory structure:
calculator/
grammar.pest
mod.rs
in mod.rs, I have the following content
// this is in file mod.rs
// I have the following line to see if preprending a "./" helps the goto-file finder
// ./grammar.pest
#[derive(Parser)]
#[grammar = "grammar.pest"]
struct Calculator;
now, when I put the cursor over "grammar.pest" (either of them) and hit "goto file", it can't find the "grammar.pest" in the current directory.
Question: Is there some type of formatting I can do so that it jumps to "grammar.pest" ? (It's okay is the formatting is weird and we have to stuff it in a comment.)