Ability to programmatically detect whether an auxillary/secondary side bar is active
tl;dr: I can’t find if there is an entry for “is secondary side bar active or not” in vscode.workspace.getConfiguration()
. I want to be able to programmatically check if it’s active.
Is there a way to change the priority of vscode.FileDecorationProvider?
I have my own vscode.FileDecorationProvider for displaying a ‘Dot’ icon with accent color for the startup project.
But Git overlapped my color and hint with its own values. Is there a way to change the priority of my vscode.FileDecorationProvider to display it instead of Git?
Private `launch.json` in VS Code?
I have pulled VS Code debug configuration file launch.json
from company Git repository. I made some changes, but those are just for my debugging endevours, not ment to be commited back to repository.
Getting “Resolver error: Error: Got bad result from install script” when connecting to remote through remote ssh plugin
I’m getting the error “Got bad result from install script” whenever I attempt to connect to my remote host through the vscode remote ssh plugin.
Capturing uri from drag-and-drop from explorer to webview in a VS Code extension?
I have a webview made with React. I would like to implement a drag-and-drop thing, to allow dropping files from the vs-code explorer onto my webview.
Capturing uri from drag-and-drop from explorer to webview in a VS Code extension?
I have a webview made with React. I would like to implement a drag-and-drop thing, to allow dropping files from the vs-code explorer onto my webview.
Is there a paste repeater for VScode that allows more than 1000 chars in the final text?
I am looking for an extension that does a very simple thing.
inline chat can only be used with github copilot?
How could I develop an private copilot extention using inline-chat without github copilot?
How can I syncronizing remote work in vscode?
I’m using vscode tunnel to work remotely. I coded on a remote machine and I came to the local machine this morning to find that my codes were not updated. I tried to choose the “continue working on vscode.dev” but it says that ”
Your working changes exceed the size limit and cannot be stored.”
How to determine the status of the tab key in vscode plugin development and make different treatments according to the situation?
I am trying to write a VS Code plugin to extend the functionality of Emmet. The desired outcome is that when the user presses the Tab key, if the Tab key triggers an Emmet expansion or a code snippet, it should not perform any additional actions. If it does not trigger any special functions, it should use my custom logic. Additionally, if the cursor is in a placeholder within an expanded snippet, the Tab key should have the special function of navigating the cursor, and in this case, it should not use the custom logic either.