4,749 questions
-2
votes
0
answers
34
views
vscode: incorrect package (Java) [closed]
picture0
src is my root file, and i have a file test right beneath it.
And in my Main.java, declaring package test as the file name.
why is my vscode keeps announcing package error.
chatgpt and ...
0
votes
0
answers
13
views
Add chat participant in vs code extension in notebook cell inline chat
I'm building VS Code extension based on vs code notebook API. The extension contributes a chat participant and it works fine from the main chat.
There is also an inline chat in the notebook code cell, ...
0
votes
1
answer
32
views
vscode-extension-tester: Default VSIX File Added
I am attempting to use the vscode-extension-tester from this: tutorial. However, I only need to install my own VSIX extension. I added a script to package.json (extest install-vsix), but it still ...
0
votes
1
answer
29
views
Issue with Opening Default Folder in VSCode Instance Using vscode-extension-tester
I am attempting to use the vscode-extension-tester from this tutorial: https://github.com/redhat-developer/vscode-extension-tester-example. However, I am unable to set an open default folder in my ...
0
votes
0
answers
16
views
How to get currently selected file via keyboard shortcut in VS Code extension development? [duplicate]
I'm developing a VS Code extension and need to implement a feature that retrieves the currently selected/focused file in the Explorer panel through a keyboard shortcut. Does VS Code provide built-in ...
-1
votes
1
answer
36
views
Why my language extension is only available in the user folder workspace?
I have created my first language extension in vsc (macos 14.7.5 Sonoma) using "yo code" in Terminal.
The folder has been correctly created in my users folder. I have moved that folder to ~/....
0
votes
1
answer
44
views
VSCode Extension Stopping After Single Function Called
not quite sure what is happening.
I'm using this program as a fancy 'find-replace' script, however it seems to only be calling 'ReplaceText' a single time. Re-running the extension seems to then call ...
-1
votes
0
answers
84
views
GitHub Copilot is ignoring commit message generation instructions in workspace settings in VS Code
I'm using GitHub Copilot to generate commit messages. I'm not happy with the message it generates automatically by default on click of this "Generate Commit Message with Copilot" button.
So ...
-2
votes
0
answers
45
views
VS Code 1.99.3 branch management
After my VS Code has updated with 1.99 and now 1.99.3 I cannot find how or where I can simply check and manage my branches. Before the upgrade I was able to check what I will pull into the branch, ...
0
votes
0
answers
10
views
Display Data wrangler inline in Visual code
I've been using Data wrangler in Visual code to visualize dataframe. Normally Open df in Data Wrangler will open a separate tab.
One day Data Wrangler view happened to be displayed inline like this (...
-2
votes
0
answers
30
views
How to implement Visual Studio Code extensions programatically [duplicate]
There are few available extensions for icons in Visual Studio Code like 'vscode-simpler-icons' or 'vscode-great-icons'. We can use them by installing them, but installing them is user specific and is ...
0
votes
1
answer
28
views
Unable to link woff2 font file into a vscode extension whose frontend is based on vuetify 3
I have created a vuetify(3.8.1) based frontend and built it using vite build. Then included the files in dist folder in a new project where extension code exists. file structure has dist/assets then ...
1
vote
1
answer
41
views
SELECT REF(...) works in SQL Developer but fails in SQL Developer VS Code Extension
I'm using Oracle Database 19c
When I run the following query in SQL Developer, it works fine:
SELECT REF(p) FROM persons p;
However, when I run the same query using the Oracle SQL Developer VS Code ...
1
vote
1
answer
53
views
Get current function name
Executing
vscode.executeDocumentSymbolProvider
gives me all symbols in the file.
Can I somehow get name of the function that the cursor is currently in?
-1
votes
0
answers
18
views
How to make the breadcrumb in my graphical custom editor to follow the selected element?
I write an extension, implementing the CustomReadonlyEditorProvider. In the UI it shows the breadcrumbs on the top, at the moment with the file name only.
The file content is just some configuration (...