All Questions
Tagged with vscode-extensions vscode-tasks
65 questions
0
votes
1
answer
54
views
Create a shortcut to open multiple files and keep them open in Visual Studio Code
I have a task that I do several times a day everyday that requires editing 20 files (spread out in different places throughout my project), keeping them open since editing each file mostly requires ...
0
votes
0
answers
20
views
VSCode task arguments not passing to custume extension command
I'm trying to create a simple VS Code extension that receives arguments from a task, but the arguments aren't being passed through. Here's my setup:
Extension Code (extension.ts):
import * as vscode ...
1
vote
0
answers
48
views
How to see Google test output from a remote machine in the test explorer instead of the terminal in VSCode
Currently I am able to run Google-Tests in VSCode and see the results in terminal panel. I want to know how, if at all, can I see those results in the test-explorer?
In my current setup on Ubuntu-20....
0
votes
0
answers
54
views
VS Code Extension API - Task Provider - Build Task example (simple)
Background:
This is a duplicate (yes) of previous questions (Extension API - Task Provider - Build Task example) - where I cannot seem to get the answers to work - with the sole purpose of garnering ...
0
votes
0
answers
46
views
How to run VS Code extension with arguments
Specifically, I'm trying to run the Reverse Search extension with a predefined set of files to include and exclude. Currently, when I run the extension, I need to input a search term, include files, ...
-1
votes
1
answer
655
views
How to host/install vscode extension from private repository [duplicate]
I have built a vs code extension for internal purpose with in the organization and would like to distribute to the team members with in our organization. Is it possible to set a repo and configure vs ...
0
votes
1
answer
2k
views
Configuring OpenOCD debug on VSCODE with the Raspberry Pico as a target using the Debug-Probe - No working solution found
I have been pulling my hair out trying to configure VSCode on MacOS to support the above mention configuration.
The debugging works on the command line: I started the OpenOCD server in a separate ...
1
vote
0
answers
787
views
detect memory leak in typescript application
I have created vscode extension using typescript. I use vscode editor to write typescript code and run typescript application. I am observing memory leak. How can I debug this?
2
votes
1
answer
2k
views
Failed to parse json file, possibly due to comments or trailing commas
Whenever i am clicking on Run and Debug in vs code getting this error.
"Failed to parse json file, possibly due to comments or trailing commas."
how can i solve this?
I tried deleting the ....
1
vote
0
answers
54
views
VSCODE - (launch.json) What do I change to instantly run the php file instead of just launching localhost/
{
"name": "Launch built-in PHP CLI server",
"type": "php",
"request": "launch",
"runtimeArgs": [
...
0
votes
1
answer
236
views
How to customize problem description in VSCode extension
I want to add a json schema to my vscode-extension, which will be provided to other users.
After I add it to package.json, which is the following part
{
"contributes": {
"...
-1
votes
1
answer
481
views
VSCode: execute command when focus on terminal view?
I've set "ctrl + end" to execute this multicommand sequence,
When I focus on the terminal view, executing the command will output some characters in the terminal,not execute the actual ...
0
votes
1
answer
90
views
VSCode React/Redux snippets don't work in .jsx files
In one instant my React/Redux snippets broke in .jsx files screenshot.
Everything was working before.
In .js everything is working correctly
screenshot.
Reading the forums, I came across a similar ...
6
votes
3
answers
2k
views
How to restart/reload VS Code host window on extension source code file changes?
I'm developing a VS Code extension following the vscode-extension-samples/helloworld-sample.
Question:
Is there a way to Hot Module Replace or otherwise "patch" the source code loaded by ...
0
votes
1
answer
98
views
How to get build number from jenkins to display in vscode extensions
We are devloping one vscode plugin and we are using jenkins to build the code after each commit.
When devloper commit something in jenkins it builds a .vsix file. Problem is when tester downloads that ...