Visual Studio Code open tab in new window
I am trying to open a tab in a new window in Visual Studio Code so I can move it to another screen. If I drag the tab the other screen, a file is created. Is there a shortcut to open a tab in a new...
View ArticleVSCode Intelliphense not working properly with Laravel Projects
In VSCode the PHP intelephense extension version 1.3.7 marks the laravel Facades as classes not found. Before if you import a Facade like this:use Log; and then use it in the file like...
View ArticleHow to resolve UNABLE_TO_GET_ISSUER_CERT_LOCALLY with Vscode on Windows
When opening a SQL script with VS Code on Windows I get the messages:Initializing SQL tools service for the mssql extension. Note: mssql commands will be available after installing the...
View Articlevscode intellisense to show types for all suggestions
Current behavior: vscode intellisense only shows type for currently selected item.Goal: see helpful types for all suggestions, like in Atom.I am comfortable with writing extension or modifying vscode...
View ArticleIs there a way to change from double quotes to single quotes in VS Code quick...
When using VSCode with Angular, I write my import statement list this:import { AppComponent } from './app.component'; The VSCode Quick Fix adds them like this:import { WelcomeComponent } from...
View ArticleHow to see git diff on vscode side-by-side file?
I would like to know how to see as a file with the command git diff master origin/master in the terminal on Visual Studio Code.I did a git fetch from my remote repository, and now I want to see the...
View ArticleUnable to debug React Native using VSCode
Fresh init of a RN project with a fresh copy of React Native Full Pack in VSCode. I'm unable to get this new project to debug, but am able to get other projects to debug using the same methods. I've...
View ArticleVSCode RESTclient XML set a Request Variables
I would like to set a value from a XML body and save it as a Request Variables, but I can't understand the syntax to do this. Incorrect request variable reference syntax, it should be...
View ArticleWhat format of text is Xcode console output?
I'm running a React Native app from Xcode, and have a bunch of lines of output from the console like the following:2020-01-10 12:21:54.135 [error][tid:com.facebook.react.JavaScript] undefined is not an...
View ArticleFind where a python function is defined
I am trying to improve a set of python files written by a co-worker. There are many scripts and each script calls all the functions and classes from other filesfrom file1.py import * from file2.py...
View ArticleHow to find and change Java compiler option in Visual Studio Code?
I am new to Visual Studio Code (VSC) and I come from Eclipse. VSC tells me 2 errors on my project:Build path specifies execution environment J2SE-1.5. There are no JREs installed in the workspace that...
View ArticleHow to set JAVA environment variable in VS Code
I have a spring-boot project and my IDE is VS code. I want to pass an environment variable to my applications. Right now I set it before the Gradle command export PROJECT_NAME=test ./gradlew bootrun...
View ArticleConda is only showing the input() prompt after giving input
I have a very easy input statement in Python Conda:sentence = input("Please give a sentence: ") print("Your sentence is:\n" + sentence) When I run the code in the integrated terminal of Visual Studio...
View ArticleVisual Studio Code - No such file or directory
I have a problem with Visual Studio Code. I want to code with Python. I have installed the newest version of Python. I have installed Python extension on Visual Studio Code. I create file with .py...
View ArticleWhat is the file identifier for Fortran 90 in VS code?
I was trying to add vertical rules for Fortran code in VS code, with the following lines{ "[fortran]": { "editor.rulers": [0, 1, 5, 6, 79, 120] }, } in settings.json, I was able to make it work for .f...
View ArticleVisual code key shortcut navigate search sidebar?
Ctrl+shift+f opens up the search all files sidebar in Visual Studio Code. But what are the shortcuts for navigating the search result? You can use the arrows in file explorer to navigate files in the...
View ArticleHow to replace variable in Visual Studio Code ? (snippet)
I use javascript snippet with key binding.so I have this code below { "key": "alt+c", "command": "editor.action.insertSnippet", "when": "editorTextFocus", "args": { "snippet": " const $TM_CURRENT_WORD...
View ArticleUnexpected lock protocol found in lock file. Expected 3, found 0. in flutter
Error: PS C:\Users\Chubi Wonder\Desktop\dev> flutter run Using hardware rendering with device AOSP on IA Emulator. If you get graphics artifacts, consider enabling software rendering with...
View ArticleVisual Studio Code does not show IntelliSense?
Visual Studio Code does not show any IntelliSense when working with react application development. and cannot navigate through files. but it works for other simple application development(eg: NodeJs...
View Article