Relative Content

Tag Archive for typescriptvisual-studio-codevscode-extensions

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.

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