VSCode Remote Control. This extension allows you to remotely control Visual Studio Code. Run commands from anywhere you want on your device. The extension allows you to take VSCode automation to the next level. In the background it uses websockets in order to listen to commands it should execute in your VSCode instance. In your VSCode workspace settings. Visual Studio Code does not have the concept of a known 'web application port' like Visual Studio for project types such as ASP.NET. However, if you are joining a collaboration session from a Visual Studio host, you may automatically see your default browser appear when debugging starts that is then. Syntax highlighting and IntelliSense for styled-components. Uses a CSS grammar built on top of language-sass and language-css. Inside VSCode, press Ctrl+P, and enter: ext install vscode-styled-components It should be the top result. Syntax highlighting for styled components in JavaScript and TypeScript.
This extension allows you to remotely control Visual Studio Code. Run commands from anywhere you want on your device. The extension allows you to take VSCode automation to the next level.
In the background it uses websockets
in order to listen to commands it should execute in your VSCode instance.
Info: This is a sample of how I use the Remote Control extension in combination with the macOS Raycast app.
Extension Settings
The extension has the following settings which you can use to configure it:
remoteControl.enable
: enable/disable this extensionremoteControl.port
: set the port number for the websocket to start the server
Usage
When you install this extension, it will automatically open a websocket
on port 3710
. This port can be changed on in the VSCode settings. When you are going to use multiple VSCode sessions at the same time, it is best to configure it on workspace level.
Vscode Visual Studio 2019
Once installed, you can execute commands
for VSCode remotely by calling the Remote Control its websocket. Here is an example how to open the terminal in VSCode:
The text you need to pass to the websocket
listener is as you can see a stringified JSON object. The object currently consists of:
Command
:<command-id>
How do I get the command ID?
To get the command ID, open the Command Palette
and type Show all commands
. This will give you a list with all the available commands.
Visual Studio Community
Behind each command, there is a gear button. When you click on it, it brings you to the shortcut configuration. Where you can right-click on the command and copy its ID.
Vscode Visual Studio Theme
Feedback / issues / ideas
Visual Studio Code Reviews
Please submit your feedback/issues/ideas by creating an issue in the project repository: issue list.