Relative Content

Tag Archive for visual-studio-codevscode-extensions

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.

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.