command-variable
command-variable copied to clipboard
Visual Studio Code extension for variable substitution via ${command:commandID}
The value of `${workspaceFolder}` is expanded differently by the extension than how VSCode expands it. Outside the extension, > It doesn't return the workspace folder the currently active file is...
I've failed to figure out how to do this. My settings.json: ``` { "tasks.projectFile": "${workspaceFolder}\\Nexgen.csproj", } ``` My inputs (I've tried several variations, but this is what looks most right...
Taken as separate question from #73 See for example workspace structure #73 ## ❓ Question 2 Considering the same previous case, I would like to know if there is any...
Would it violate some core principle to add a resolver that shells out to a command and uses the output of the command as the variable value? This would allow...
I'm attempting to setup some remote debugging to kubernetes containers which requires me to ask the user for the pod name they wish to debug. The pod names will need...
I'm trying to build a launch configuration that will, 1. submit a python script to be ran on a server farm, 2. wait for an indication that the script has...
I think this plugin is fantastic. But at first I couldn't figure out how to define a simple variable and use it in the configuration field value. After reading through...
VSCode has a dedicated API to persist data: https://code.visualstudio.com/api/references/vscode-api#Memento Using that would solve the caveats with `persistent.file` described in https://marketplace.visualstudio.com/items?itemName=rioj7.command-variable#settings such as working with a remote workspace
When I use `checkEscapedUI` in my inputs, then hitting escape causes VSCode to show a popup with the text: > Cannot read properties of undefined (reading 'apply') The task doesn't...
Hi, I use this extension to select options for the `conan install` command. We select the build type: ``` { "id": "buildType", "type": "command", "command": "extension.commandvariable.pickStringRemember", "args": { "key": "buildType",...