Using proposal APIs in VS code Extensions (working in Insiders but not in VSCode)
I am working on a vs code extension, and I implement this Inset in my vs code extension . Following these steps mentioned in the documentation , I am able to develop and test that on the Insiders.
But is there any way i can share the vsix with users so that they may be able to use this extension in VScode itself rather than Insiders?
Visual Studio Code API – is there a way to programmatically change the icon of a folder/file for the “Explorer” pane?
I’m trying to develop a Visual Studio Code extension that will override the icons of certain folders, if said folders contain files that match either a wildcard (e.g. *.csproj
) or a full name (e.g. Cargo.toml
). The icons would be replaced with the icons that are assigned to the matched files. A good example of this are C# projects, which always have a .csproj
file – these folders would get the icon associated with the .csproj
extension.
How can one execute a CodeAction programmatically from a VSCode extension?
Is it possible to execute another extension’s code action programmatically from my VSCode extension? Specifically I need to run the resolveCodeAction
of the code action provider before executing, which seems to be what VSCode does before running a Quick Fix.
Error when running example vs code extension tests
I’m following this vs code guide for writing extension tests and running into an issue. When trying to run the tests I get this error:
VScode extensions – how can I make a context menu item appear on a folder only if it contains files with a specific extension?
In my case let’s say I have a specific extension .new
and I want a context menu item to appear only in folders containsing files with that extension, how can I do it?
Highlight continues to extend to edits made by the user after initial decoration
I am developing a VS Code extension that fetches inserts code into the selected area.
I insert code as follows, and then set the decoration
VS Code extension: Highlight continues to extend to edits made by the user after initial decoration
I am developing a VS Code extension that fetches inserts code into the selected area.
I insert code as follows, and then set the decoration
Creating a extension for showing comment outlines
I’m trying to create a extension which creates a outline around comments. I’m having trouble with multiline comments. I want to enclose the multiline comment in a single box. Currently it’s creating a border at every line. I’m building on top of the better comments extension.
enter image description here
Programatically accepting VSCode suggestions
I am making a speech-to-code vscode extension and one of the features I want to add is to accept a vscode suggestion when the user says a certain command.
Decorations in VS Code Extension being displayed temporarily
I am developing a vs code extension, in which I want to highlight a few lines of code for certain files: