Adding a toggle that allows to remove " from wrapping $dir
Is your feature request related to a problem? Please describe.
I'm writing in golang. I wanna use clear && go run $dir. to run the code. But i can't, because $dir wraps directory into ", which removes the possibility of doing $dir/<some filename>, because it would become a mess: "working/path/"somefile.go
I need a way to write some/path/. where . stands for any in golang, that will run any file containing main function, without directly specifying it.
Describe the solution you'd like
Add an optional toggle to not wrap directory into "" automatically. Instead let users do that themselves, like "go": "clear && go run \"$dir.\", as this will add additional flexibility and fix the issue/problem i'm having
https://github.com/ericchase/vsce--code-runner-fork/issues/1