Synchronize VSCode windows processes
I’m working on an extension that periodically makes requests to an HTTP API. If several VSCode windows are open, they all seem to make such requests which is not optimal.
How to programmatically embed a Webview in the Secondary Sidebar in a VSCode extension?
I’m developing a VSCode extension and I want to open a Webview in the Secondary Sidebar without requiring the user to drag it manually. I would like to know if it’s possible to directly create and embed a Webview in the Secondary Sidebar through programming.
VSCode Window Border Line Removal
[enter image description here](https://i.sstatic.net/bZiiAI8U.png)
How to await format document provider’s startup?
I’m developing a VSCode extension to format files with the default formatter via the context menu.
How do I know if a language service is already started?
I’m developing a VSCode extension to format files via the context menu. When my option is clicked, I execute the vscode.executeFormatDocumentProvider
command to get the edits without opening the file in editor.
How to format a file without opening it in the editor?
I’m developing an extension for VSCode to formatting files via the context menu. Unlike other extensions, I want to do this without opening the file in the text editor.
How do I show a video in a custom vscode activitybar tab
I am currently making a visual studio code extension. Part of this extension requires a video to be playing in the activity bar tab I made however I don’t know how to add it.
Should I stop using EventEmitter?
My extension uses VS Code’s EventEmitter for communication between components.
TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension “.javascript” for c:xxxxxxxxxxxxxx-xxxxxxxxxxxxx.javascript
I created a temporary file in VSCode, I hit the run ▸ button which comes with the CodeRunner
extension, but it keeps giving me:
VS Code Extension: Working File Link in output panel
In VS Code output panel, writing a URL with http(s):// can be detected as a link. Of course file links (the file_name.ext:line_number:column
format) can be detected in terminal. Is it possible to file link to be detected in output panel, too?