Google Apps Script development with Cloud9 IDE
Has anyone successfully setup Cloud9 as an IDE for google apps script development, specifically for JS files. I have been able to setup VSCode and clasp -- and that works well -- as described at these...
View Articlevscode integrated terminal not running tknter application?
So I am learning how to use tkinter and I am making a simple app, the problem happens when I try to open the application from the vscode terminal:(base)...
View ArticleVS Code won't print during Python code execution, only at the end
Sorry if this is a stupid question, but I have not been able to solve it through the following related threads:Visual studio code is not showing the ouput of pythonHow to execute Python code from...
View ArticleHow to reset Visual Studio Code key bindings?
I have been experimenting with my vs-code key bindings.I would like to reset the key-bindings to the original settings.How do I do that?I am on Linux Mint 18.I tried removing all the records from the...
View ArticleHow to get VSCode Gutters to show diff from upstream
I am using VsCode and the gutter features (the blue, red, and green highlighted sections on the side) which show file modifications are extremely useful. However, after a commit, those gutters go away....
View ArticleIs it realistic to implement Syntax Hightlight in c++
I'd like to implement proper highlight for my language in vscode. I have read the Syntax Highlight Guide and it tells to use TextMate but this way seems too complex. It would be so much easier to take...
View ArticleVisual Studio Code does not add function parentheses in JavaScript
For example, I am writing console.log and press tab but Visual Studio Code does not add parentheses. When I look here, VSCode automatically adds open and close parentheses. However, it didn't work for...
View ArticleVisual Studio Code not showing folders in the explorer
I cannot view folders in the VS Code Explorer. I couldn't find the relevant solution on Google. How can this problem be resolved?
View ArticleHow to "jump to definition" in VSCode in a lernajs mono repo?
I have a lernajs mono repo and writing code with VSCode. Now I'm struggleing with the jsconfig.json file and the Jump to definition command.When I my jsconfig looks like this I can jump between my...
View ArticleJasmine Test Explorer is showing typescript jasmine tests in VS Code
I am using Jasmine Test explorer for angular typescript. When we create a angular component, the *spec.ts also created, so the spec.ts files are scattered all over the project. is my spec_dir value...
View ArticleHow to format on "auto save" using VSCode? Currently it formats when I use...
I have VSCode configurated for formatting on saving and also configured for auto-saving after delay like the following snippet{ ... "editor.formatOnSave": true, "files.autoSave": "afterDelay",...
View ArticleHow to add the custom "when clause" in VS Code?
Currently, I am developing a simple add-in for the .NET Core 3.0 blazor web projects. In this case, I want to enable the add-in if the .net core 3.0 blazor projects and if the project is not the .net...
View ArticleHow do I remote debug golang code with VSCode
I run a process inside a docker container that needs to be debugged. The process is started in the docker's entrypoint via dlv debug /go/src/path/to/package --headless --listen=:2345 --log for the...
View ArticleVSCode gets SSL error when connecting to GitHub
I'm behind our corporate firewall.I'm trying to push to my GitHub from VSCode 1.41.1. The following error occurs:fatal: unable to access 'https://github.com/myname/myprojectname.git/': SSL certificate...
View ArticleHow does VS Code integrate Terminal/Cmd?
Microsoft VS Code has excellent integration of various terminals in the IDE. I want to integrate PowerShell and Command Prompt into our c++/c# application in a similar way but can't figure out...
View ArticleDebugging error with vectors in C++ and VS code
I'm getting the following error message when I try to run the line vector data in my program:Unable to open 'stl_vector.h': Unable to read file (Error: File not found...
View ArticleHow to do IntelliSense for snippets when some text is selected in VSCode?
I wrote my first snippet which would wrap the selected text in if() { selected text } block."if block - snippet": { "prefix": "if block - snippet", "body": [ "if( $1 ) {", "$TM_SELECTED_TEXT", "}",...
View ArticleFlutter in VS Code command pallete doesn't find git
I've been trying to setup Flutter on my laptop without success. The problem is most likely in the extensions or something in VS Code. I can run flutter commands from Powershell no problem. But the...
View ArticleCan VSCode database extension results be customized?
I'm trying to figure out if there is a way to get the "vscode-database" extension results tabs to pop-out into a separate window or browser, or into the debugging panel. Any thoughts would be...
View ArticleVS Code: change letter spacing (kerning)
How do I change the horizontal letter spacing in VS Code?I'd like to reduce it a little, in other words, I want to change this:to this:
View Article