How to add sqlite3 dependency to VS Code extension?
I am trying to make extension in Typescript for VS Code using sqlite3 library.I have project.json like this:"dependencies": { "sqlite3": "^4.0.2" }, "devDependencies": { "@types/mocha": "^2.2.42",...
View ArticleVisual Studio Code 1.28.2 and GitHub signed commits using password-protected...
Does anybody know if there's a way to make VS Code ask for the GPG password when signing the commits?I feel somehow uncomfortable having to use a password-less GPG key to do so.
View ArticleTerminal does not open
I have tried to use this:let disposable = vscode.commands.registerCommand('extension.helloWorld', function () { vscode.window.createTerminal(`New terminal name`) }); But, after running nothing happens.
View ArticleHow to share tasks between vscode workspace folders?
My VSCode project is multi-root workspace. That is I have multiple workspaces each in separate directories, each has a .vscode folder.I'm trying to build a workspace with dependencies between each...
View ArticleHow to make a snippet printf with \n in C (with vscode)
I have a question, how to make a snippet in vscode so when you type pr and it will develop a code like this printf("type here\n"); I tried this : "prefix" : "pr", "body": ["printf(\"$1 \n \",$2)"] },...
View ArticleI was wondering how can I edit commit message with VSCODE in remote-SSH?
I want to edit commit message like this : https://stackoverflow.com/a/54139152Indeed , it is use VScode as the git core.editor by git config --global core.editor "code --wait"But I use remote-SSH , and...
View ArticleJupyter notebook other vs code extension did not work on it
the feature of other vs code Extention did not work in jupyter notebook and when able the code auto-completion the bracket complete with ($0) inside so how to make visual studio intellicode extension...
View ArticleWakaTime More specific time in Visual Studio Code
In my workstation at work I have fount out that you can have more specific time viewing in WakaTime in Visual Studio Code like how much time you have wasted on debugging or browsing the answer to your...
View ArticleVS Code debugger cannot find the file, but file exists
I'm using VS Code for Python (anaconda package and OpenCV).I'm debugging the program (pressing F5) and I'm getting the error below.code I'm getting the error withimport cv2 as cv import os import numpy...
View ArticleFilter Explorer pane for specific file types?
I've just installed Visual Studio Code and am using it to browse a folder for a project written in Python. Is there a way for me to tell Visual Studio Code to filter the view in the Explorer pane to...
View ArticleVSCode inserting "non-breaking spaces" instead of regular spaces
I am trying to figure out why VSCode sometimes decides to randomly insert "non-breaking spaces"U+00A0 instead of regular spaces, and how to stop this from happening?This is a different type of space...
View ArticleVSCode dotnet 3.0 attach debugger not working
I just upgraded my whole project to dotnet 3.0 (aspnetCore3.0 and EFCore3.0). Before the upgrade, in VS Code I could attach to the dotnet process and debug just fine.Now, it asks me to pick the process...
View ArticleVariables in VS Code settings, how?
In VS Code settings, there are some fields which I configure the same. These would be namely font and font size. Generally I have them all set to the same. I am trying to set up a variable in the...
View ArticleVSCode does not find virtual environment anymore
Lately, VSCode has been unable to find the virtual environment present in my project folder.Suprisingly, the PYTHONPATH is set correcty:"python.pythonPath": "$(workspaceFolder)/venv/bin/python"and the...
View ArticleHow to use a Third-Party DLL in Visual Studio Code
I have a couple of header files that call functions from DLL files, and I was wondering how I could provide the link for the header files and DLL files to communicate in Visual Studio Code.Let me know...
View Articlekeyspace does not exist cassandra while craeting new keyspace
I'm using VS code with Cassandra Workbench to work with cassandra db.configuration connection in json{ "name": "xxx", "contactPoints": ["xx-xx.xx"], "authProvider": { "class": "PasswordAuthenticator",...
View ArticleHow to install azure-cli on Visual Studio Online Environment
Any ideas how to get azure-cli working inside Visual Studio Online Environment?I tried install via official docs -...
View ArticleHow to show R graph from visual studio code
I installed extension for R language https://marketplace.visualstudio.com/items?itemName=Ikuyadeu.rWhen i run my R code in visual studio code with (ctrl + enter) i get empty window instead of graph...
View ArticleHow to turn off Typescript Language Basics suggestions in Visual Studio Code?
I find Typescript Language Basics suggestions annoying - they always come on top of my suggestion and I would like to turn them off. Does anyone know how to do that?
View ArticleVS Code Editor: Show git origin on status bar
I want to know if there's a way to show the current git origin on the status bar.It's really hard when working on a multi-project workspace, to know what's the current focused repository that shows on...
View Article