Angular: Log the whole Stack Trace between Two Breakpoints
How do I log the whole stack trace Log in Angular 8, using Visual Studio Code with Chrome?I want to record the stack trace between two breakpoints, but don't want to step thru, F10 through the 1000+...
View ArticleVisual Studio Code to use node version specified by NVM
Is it possible for VS Code to use node version specified by NVM? I have 6.9.2 installed locally. Even after switching to another version, from the OS X terminal (not the VS Code terminal), restarting...
View ArticleIs there a way to run command in Visual Studio Code from CLI?
I'd like to run a script for open Visual Studio Code from command line and passing a command to the integrated terminal. Something like#!/bin/bash code /path/to/my/project --run-in-terminal "docker...
View ArticleVariable use in POST request with REST Client for Visual Studio Code
I am using REST client with VSC for testing. I have a question about the use of variables in POST request.I have added an item in one request. I can get the id from the response. Then I want to use the...
View ArticleHow to use CLang in VSCode with PlatformIO [closed]
I am working on a project for esp32 board using Visual Studio Code with PlatformIO as an IDE (with Arduino framework) for code development.I need to do static code analysis of my code and came to know...
View ArticleIs there way to authenticate Atlassian Extension with Bitbucket under WSL?
I have my project set up under WSL. I have Bitbucket and Jira extension which are supposed to use Atlassian extension for authentication, but Atlassian extension cannot authenticate with bitbucket for...
View ArticleWhy doesn't the compiler work for C language using Visual Code?
I just wrote my first program using C language in Visual Code. I don't have any errors but the program won't compile. At the terminal, I'm typing clang cardsa.c. It's giving me errors that clang...
View ArticleCannot select a python interpreter in VScode
I'm having some troubles trying to select a python interpreter in VScode. As you can see in this picture (VScode: select python interpreter), VScode asks me to select a python interpreter but when I...
View ArticleVScode remote connection error: The process tried to write to a nonexistent pipe
I use vscode with remote-ssh to connect my server, after configuring, I want to connect my host, but it failed, the dialog box display:"could not establish connection to XX, The process tried to write...
View ArticleIs it possible to get jsdoc hinting without the need to open corresponding...
In Visual Studio Code I am programming a web application for which I use JSDoc. When I hover over classes that I defined using JSDoc, hinting is only available when the files are opened where the...
View ArticleHow to use global gitignore with Visual Studio Code?
I have a global gitignore file defined in my gitconfig but Visual Studio Code seems to not be interpreting it. How would I use a global gitignore with Visual Studio Code?
View ArticleVSCode auto import not recognising eslint alias/webpack resolve/tsconfig paths
I have an node module which I want to create an alias for.I have the following configs:// tsconfig.json { "compilerOptions": { ... "allowJs": true, "module": "commonjs", "target": "es6", "jsx":...
View ArticleHow to disable or override the vscode default shortcut?
I want to develop a vscode shortcut extension,but how can I disable or override the vscode default shortcuts in my extension code? For example, I want to set ctrl+k to format document, but it always...
View ArticleIs the target of MouseEvent always an Element?
Visual Studio Code shows that target variable is of EventTarget type in the following TypeScript code:document.addEventListener('click', (event) => { let target = event.target }) Why isn't it marked...
View ArticleHow do you format code in Visual Studio Code (VSCode)
What is the equivalent of Ctrl + K + F and Ctrl + K + D on Windows in Visual Studio for formatting, or "beautifying" code in the Visual Studio Code editor?
View ArticleVSCode ESLint howto fix parsing error: 'import' and 'export' may only appear...
When doing a dynamic import:if (true) import x from 'y'; //Parsing error: 'import' and 'export' may only appear at the top level my .eslintrc{ "root": true, "extends": "eslint:recommended", "env": {...
View Articlehow to add thirdparty source file or the recursively the directory not to...
I am using vscode with cmake. I have built OpenCV library. I can include OpenCV headers and link OpenCV libraries. The vscode cpp extensions can go to declaration by using compile_commands.json...
View ArticleProblems with installation of OmniPascal
I followed the instructions on http://www.omnipascal.com/:Install Visual Studio Code and open it. Open View Command Palette... and type ext install Search for OmniPascal and install it. Restart Visual...
View Articlepymysql reading \n characters. how can I stop \n characters being run in an...
Error: pymysql.err.ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CREATE PROCEDURE...
View Articlehow can a language server access a file in the same directory as the source file
I am writing a language server for my custom language. The way a source file is processed is partly influenced by a manifest.json file in the same directory as the source file. In a workspace there...
View Article