You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In vscode, there is a AbstractVariableResolverService to help dynamically generate launch\attach request at runtime by using abstract variables. For example, ${file} is replaced by the active open file path. This ability enables that developers can define a generic ROS launch task and simply go to the editor to open roslaunch file and press F5 to debug.
BTW, currently we hooked our logic on the resolveDebugConfiguration and the code path didn't get a chance to run AbstractVariableResolverService for the variables resolving.
In
vscode
, there is aAbstractVariableResolverService
to help dynamically generate launch\attach request at runtime by using abstract variables. For example,${file}
is replaced by the active open file path. This ability enables that developers can define a generic ROS launch task and simply go to the editor to open roslaunch file and pressF5
to debug.BTW, currently we hooked our logic on the
resolveDebugConfiguration
and the code path didn't get a chance to runAbstractVariableResolverService
for the variables resolving.https://github.com/microsoft/vscode/blob/4c45266943228286126e1ad9f840851a0cde594d/src/vs/workbench/contrib/debug/browser/debugService.ts#L369
The text was updated successfully, but these errors were encountered: