Any example to set from and to path in $HOME/.dlv/config.yml ? I have tried setting:
case 1 ( with quotes in from and to) substitute-path:
{"from":
"/private/var/tmp/_bazel/d3eb9a0ef06857aebc54b41ff425d2ee"
"to": "/Users/xxx/code/src"}
case 2: ( without quotes in from and to) substitute-path:
{from:
"/private/var/tmp/_bazel/d3eb9a0ef06857aebc54b41ff425d2ee"
to: "/Users/xxx/code/src"}
case 2: ( with hyphan before '{from' ) substitute-path:
-{from:
"/private/var/tmp/_bazel/d3eb9a0ef06857aebc54b41ff425d2ee"
to: "/Users/xxx/code/src"}
case 2: ( with hyphan before '{from' ) substitute-path:
-{"from":
"/private/var/tmp/_bazel/d3eb9a0ef06857aebc54b41ff425d2ee"
"to": "/Users/xxx/code/src"}
all 4 cases fails with config. error. any working sample to set the path?
I think you are missing a space. The quotes are relevant only if the values or keys have spaces in them, or some other non-printable, non-ascii characters.
The config here, without comments:
Seems like valid yaml:
The yq tool is a wrapper for jq.