jahan01
jahan01
@Huachao currently is there anyway to preview current assigned value from response body? it would nice to have a preview of current value. (in form of codelens or something)
has anyone found solution or workaround for this? I would be interested to know - tried implementing this feature on my own, but then test collection breaks when a function...
I ended up creating separate marker for class scoped ordering. For those who may need below is the snippet. ```python def sort_cls_items(items): grouped_items = {} for item in items: mark...
Okay, I am not clear how this works. I am listing the info from my system **`.zshenv`** ``` export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk-11.jdk/Contents/Home ``` **`settings.json`** ``` "java.home": "/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home", "maven.terminal.useJavaHome": true, ``` Run custom...
@Eskibear : yes, you are right in saying that vscode sets the env variable at the terminal creation but it is overridden if the avariables are also set in shell...
@Eskibear I am not an expert, but this is exactly what vscode-python extension do to activate virtual environment (though it doesnt do `export`, but I think approach is similar to...
BTW, FYI I have opened a ticket in microsoft/vscode#98490 to get `terminal.integrated.env.osx` fixed.
@Eskibear : I think VSCode has new API now for extensions to contribute to env variable in integrated terminals. See [here](https://github.com/microsoft/vscode/issues/98490#issuecomment-640580231) and [here](https://code.visualstudio.com/updates/v1_46#_environment-variable-collection)