VS Code - Error: EPERM: operation not permitted
I have been experiencing A LOT of permission issues when using VS code with Windows 10.When trying to move a folder: Error: EPERM: operation not permitted, rename 'path a' ->'path b'When deleting a...
View ArticleHow do I evaluate expressions while debugging in VS Code?
I am using vscode to build my golang gin project.I go to debugging mod and can not do evaluate expressions.I want to go some line and evaluate that see what happened in that monent.Like eclipse...
View ArticleVS Code Server for WSL closed unexpectedly
I am trying to run a Python project on the WSL (Ubuntu-18.04 distribution) system with VS code. I have the WSL - Remote plugin v0.39.9 installed. When run the command:code . Receive the...
View ArticleAdding Python package to path for VSCode terminal
I'm writing python classes in a package using VScode. I want to add this package's parent directory to the Python path when using the VScode Terminal so I can import the package (regardless of the...
View ArticleDifference between navigateRight and focusRightGroup?
What is the difference between these two command IDs in VSCode?workbench.action.navigateRightworkbench.action.focusRightGroup
View ArticleHow do I apply a transform to a variable in a snippet in VSCode?
With the code below I want to transform the variable in $2 to lowercase but I can't quite get it to work."Build Model": { "prefix": "mod", "body": [ "import '${1:../backend.dart}';", "", "class...
View ArticleJSHint does not recognise Async/Await syntax in Visual Studio Code (VSCode)
I've been struggling with VSCode and JSHint to find out a way to get rid of this syntax highlighting. It seems like JSHint is not able to recognise Async/Await syntax.Here you can find a screenshot of...
View ArticleDifference between closeEditorsAndGroup and closeEditorsInGroup
What is the difference between these two command IDs in VSCode?workbench.action.closeEditorsAndGroupworkbench.action.closeEditorsInGroupBoth seem to trigger the same action when I run it (they both...
View ArticleHow to check Debug.Writeline() output in VS code?
I want to know the exact way to check the output of Debug.Writeline() in VS Code using C# extension.I was using .net core 2.2 as a framework to run a sample test from this website...
View ArticleVisual Studio Code not understanding CMake -DDEBUG
Developing on Ubuntu 18.04 with CMake 3.15.3 and Visual Studio Code 1.39.2. My C++ project has a CMakeLists.txt with this line:set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -DDEBUG") In the C++...
View ArticleVisual Studio Code doesn't recognize my anaconda packages and modules
I'm new to Machine Learning and im trying to get used to VS Code, so I tried to use it but quickly ran into some problems (not knowing how to run python on the terminal, using the conda environment,...
View ArticleVisual Studio Code does not implement IntelliSense correctly for numpy but...
I started working in Visual Studio Code and configured python IntelliSense. Untill now everything is working like a charm. However, IntelliSense works perfectly with all packages except numpy objects....
View ArticleHow to export databases with commands azure cli with C# code
I use Azure CLI to export backup the databases in my resource group to the blobstorage, so i want to use same command on visual studio code with c#.For example, I use the following command in Azure CLI...
View ArticleHow do I disable: [js] File is a CommonJS module; it may be converted to an...
The following is what I want to disable: I can't find it in settings. Help appreciated as this is really annoying.
View ArticleDelete 'Python Interactive' environment created by VSCode inside Jupyter?
I ran some jupyter notebook using VSCode. However, VSCode created some 'Python Interactive' environment which appears in my Jupyter Notebook. How do I remove them?
View ArticleHow to show ignore file in visual studio code?
My tree view hides all ignored files from .gitignore. I cannot find anything in settings.json to show ignored files in my project. How do I show files ignored because of .gitignore?
View ArticleSeperate JSX and function blocks from parent parentheses or parent tag
let say I have a React Component (class based for now, yeah i should start using hooks =D)class App extends Component { state = { someState: "" } render() { return ( <View> <View>...
View ArticleHow to create a comment block of //'s around text of different lengths
I'm curious, if there's a way to create these blocks automatically around a text? Currently working in VS / VSC projects.///////////////////////////////////////////////////////// /////////////////////...
View ArticleHow to toggle between opened tabs in VS Code
I was looking at default keybindings but didn't find it. Is it even possible by default to toggle between opened tabs in VS Code? If no, maybe you know extension for doing so?Thanks!
View Articleimporting library in visual studio code
let's say I want to use util4, I will write down in my java file:import unit4.turtleLib.Turtle; (I got the jar file in the same folder) I'm running it over visual studio code without maven (if I would...
View Article