10 results found
-
GitHub Copilot Extensions are all you need - Visual Studio Code
Here are some that we found particularly compelling. Stripe Stripe enables developers to accept payments and move money online. The new @stripe chat participant brings the knowledge of Stripe’s documentation, code examples, and best practices to your fingertips, so you can build and maintain your Stripe integration without leaving VS Code.
-
Visual Studio Code on Windows
Tip If you don't yet have a Copilot subscription, you can use Copilot for free by signing up for the Copilot Free plan and get a monthly limit of inline suggestions and chat interactions.
-
Settings Sync - Visual Studio Code
Settings Sync Settings Sync lets you share your Visual Studio Code configurations such as settings, keyboard shortcuts, and installed extensions across your machines so you are always working with your favorite setup. Note: VS Code does not synchronize your extensions to or from a remote window, such as when you're connected to SSH, a development container (devcontainer), or WSL. Turning on ...
-
Cloud agents in Visual Studio Code
Use cloud agents and GitHub Copilot coding agent in VS Code to autonomously handle coding tasks with automatic pull request generation and team collaboration workflows.
-
Create a Dev Container - Visual Studio Code
Create a Dev Container The Visual Studio Code Dev Containers extension lets you use a Docker container as a full-featured development environment. It allows you to open any folder or repository inside a container and take advantage of Visual Studio Code's full feature set. A devcontainer.json file in your project tells VS Code how to access (or create) a development container with a well ...
-
Extension API - Visual Studio Code
How to build, run, debug, test, and publish an extension How to take advantage of VS Code's rich Extension API Where to find guides and code samples to help get you started Following our UX guidelines for best practices
-
Activation Events | Visual Studio Code Extension API
Activation Events Activation Events is a set of JSON declarations that you make in the activationEvents field of package.json Extension Manifest. Your extension becomes activated when the Activation Event happens. Here is a list of all available Activation Events: onAuthenticationRequest onChatParticipant onCommand onCustomEditor onDebug onDebugAdapterProtocolTracker ...
-
Visual Studio Code FAQ
Visual Studio Code FAQ Our docs contain a Common questions section as needed for specific topics. We've captured items here that don't fit in the other topics. If you don't see an answer to your question here, check our previously reported issues on GitHub and our release notes. Open sourcing AI in VS Code We've open sourced the GitHub Copilot Chat extension under the MIT license and are ...
-
Setting up Visual Studio Code
Setting up Visual Studio Code VS Code is a free code editor, which runs on the macOS, Linux, and Windows operating systems. Getting up and running with Visual Studio Code is quick and easy. It is a small download so you can install in a matter of minutes and give VS Code a try. VS Code is lightweight and should run on most available hardware and platform versions. You can review the System ...
-
Extension Anatomy | Visual Studio Code Extension API
Extension Anatomy In the last topic, you were able to get a basic extension running. How does it work under the hood? The Hello World extension does 3 things: Registers the onCommand Activation Event: onCommand:helloworld.helloWorld, so the extension becomes activated when user runs the Hello World command. Note: Starting with VS Code 1.74.0, commands declared in the commands section of ...