Is there a way to pick a file similar to ${command:pickMyProcess} in launch.json? #1210
-
I‘m reading the manual, and trying to write my launch.json. I want a configuration that open a dialog, let me pick a coredump file, then inspect it. There's a way to pick process and attach to it by using ${command:pickMyProcess}. So I think there might be a way to pick a coredump file and debug it? I saw some related code, but it's in javascript. Is there simple way to use it with only modifying launch.json?
Sorry that my English might be poor:( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The |
Beta Was this translation helpful? Give feedback.
The
${command:...}
syntax allows invoking a VSCode command, either built-in or provided by an extension.I am not aware of any built-in commands that allow picking a file and returning its path, however there seem to be a bunch of 3rd party extensions that do.