10 results found
-
C/C++ for Visual Studio Code
C/C++ support for Visual Studio Code is provided by a Microsoft C/C++ extension to enable cross-platform C and C++ development on Windows, Linux, and macOS. When you create a *.cpp file, the extension adds features such as syntax highlighting (colorization), smart completions and hovers (IntelliSense), and error checking. Open VS Code.
-
May 2025 (version 1.101) - Visual Studio Code
VS Code now enables you to define tool sets, either through a proposed API or through the UI. A tool set is a collection of different tools that can be used just like individual tools. Tool sets make it easier to group related tools together, and quickly enable or disable them in agent mode.
-
Keyboard shortcuts for Visual Studio Code
VS Code provides a rich keyboard shortcut editing experience with the Keyboard Shortcuts editor. The editor lists all available commands with and without keyboard shortcuts, and enables you to change, remove, or reset their keyboard shortcuts using the available actions.
-
Integrate with External Tools via Tasks - Visual Studio Code
Let's start with a simple "Hello World" TypeScript program that we want to compile to JavaScript. Create an empty folder "mytask", generate a tsconfig.json file and start VS Code from that folder. mkdir mytask cd mytask tsc --init code . Now create a HelloWorld.ts file with the following content.
-
Copilot smart actions in Visual Studio Code
Copilot can help generate commit messages and the PR title and description based on the code changes in a commit or the changes in a pull request. Use the sparkle icon in the Source Control view or GitHub PR extension to generate a title and description that summarizes your changes.
-
Configure C/C++ debugging - Visual Studio Code
To get started with debugging you need to fill in the program field with the path to the executable you plan to debug. This must be specified for both the launch and attach (if you plan to attach to a running instance at any point) configurations.
-
Using C++ and WSL in VS Code
To successfully complete this tutorial, you must do the following steps: Install Visual Studio Code. Install the WSL extension. Install Windows Subsystem for Linux and then use the links on that same page to install your Linux distribution of choice. This tutorial uses Ubuntu.
-
Enhanced colorization - Visual Studio Code
Use of enhanced colorization is controlled by the C_Cpp.enhancedColorization setting. This setting is enabled by default. Colors can be associated using the existing support for theming and color customization in VS Code. See the VS Code Themes documentation for more information.
-
Remote Development Tips and Tricks - Visual Studio Code
SSH public key authentication is a convenient, high security authentication method that combines a local "private" key with a "public" key that you associate with your user account on an SSH host. This section will walk you through how to generate these keys and add them to a host.
-
Syntax Highlight Guide | Visual Studio Code Extension API
Syntax highlighting determines the color and style of source code displayed in the Visual Studio Code editor. It is responsible for colorizing keywords like if or for in JavaScript differently than strings and comments and variable names. There are two components to syntax highlighting: