4,717 questions
-2
votes
0
answers
28
views
Is there a makefile vscode extension can do code jumping? [closed]
Is there a makefile vscode extension can do code jumping?
When I use ctrl+left mouse on an makefile var,I can find the definition of this variable?
I have installed the official microsoft makefile ...
0
votes
0
answers
11
views
Why does vscode.authentication.getSession() behave differently in different OSes?
When I perform sign-in in my VSCode extension, I call vscode.authentication.GetSession(). I found that a popup window opens on Windows whereas a browser launched on Mac.
If I understand correctly, ...
-5
votes
0
answers
57
views
How to disable some tooltip dialogs in VSCode
This question has been asked before, but none of the answers I have found so far have worked.
I'm using VSCode 1.101.2 with Pylance 2025.7.1, but I have had this problem for some time.
I want to ...
1
vote
0
answers
31
views
How to run vscode-extension-tester on compiled source (instead of .vsix)
What is the correct process for running vscode-extension-tester (the project's official example) against the project's compiled source code (as opposed to having to build a .vsix package before ...
0
votes
1
answer
88
views
VS Code's git integration is looking for filenames with the wrong casing
In VS Code, given a file, managed by git, which has been edited.
I can select the file from the Source Control sidebar and see the diff highlighted.
When I right-click on a change and select "...
1
vote
0
answers
31
views
attach to kubernetes pod fails in vscode as context does not exist in the session
We are connecting to kubernetes cluster hosted in AWS.
I am able to do it via cli
aws sso login --profile 234234293-prj_ns_qa_manager
#set the context to appropriate sandbox cluster
kubectl config ...
0
votes
0
answers
32
views
VS Code extension not loading when using vscode-extension-tester
I am trying to use vscode-extension-tester to write end-to-end tests for a VS Code extension; however, I can't get the tester to load my extension.
How do I debug why my extension isn't loading?
My ...
-1
votes
1
answer
80
views
Regex in VS Code TextMate syntax highlighter grammar not working
I've created a toy scripting language and managed to configure basic textmate syntax highlighting in a VSCode extension for the very simple things like keywords, comments, and strings. But when I ...
0
votes
1
answer
53
views
VSCode openResources() Not Opening Folder in Ubuntu (No Error Shown)
I'm trying to open a folder in Visual Studio Code using the openResources() method from vscode-extension-tester on Ubuntu. The code executes without throwing any errors, but the folder doesn't open in ...
0
votes
0
answers
47
views
How can I make horizontal navigation tabs in a views using the VS Code extension API?
I'm building a VS Code extension and wondering if there's a way to put tabs into an activity bar... rather than having them as collapsible panels?
I've seen this pattern in Copilot extension and ...
0
votes
0
answers
26
views
how to remove vertical lines in gutter after adding a change
I just recently reinstalled VS Code on my Mac. Before when I added changes from Explorer, the lines in the gutter would disappear. Now, after staging, the lines are still there. The only way to ...
0
votes
1
answer
32
views
geemap not rendering with vscode
I am using vscode with jupyter note book on a Ubuntu 24.04.2 LTS os. I cannot get maps from geemap to display.
When I run this
M1 = geemap.Map()
M1.centerObject(aoi, 11)
M1
Nothing renders.
M1 ...
0
votes
0
answers
46
views
How to make PEP8 formatter vscode extension to allow long lines?
How to make PEP8 formatter vscode extension to allow long lines for python? Currently the formatting enforce too short lines.
Furthermore, I really like the auto-formatting in pycharm. Is there a way ...
0
votes
0
answers
28
views
How to set cookie for data block in config.yaml of continue?
I'm trying to capture chatInteraction and chatFeedback from continue with below config details in config.yaml of continue plugin.
But I see no response and no logs being printed during debug in ...
3
votes
0
answers
78
views
How to inject global virtual type definitions in a Server Plugin (typescriptServerPlugins)?
I'm developing a custom typescriptServerPlugin and trying to inject global type definitions (without requiring explicit import) via a virtual .d.ts file.
I want TypeScript files in the project to ...