10 results found
-
Visual Studio Code debug configuration
In VS Code, there are two core debugging modes, Launch and Attach, which handle two different workflows and segments of developers. Depending on your workflow, it can be confusing to know what type of configuration is appropriate for your project.
-
File System API | Visual Studio Code Extension API
A guide to using Virtual Documents in Visual Studio Code extensions (plug-ins)
-
C/C++ for Visual Studio Code
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. Select the Extensions view icon on the Activity Bar or use the keyboard shortcut (⇧⌘X (Windows, Linux Ctrl+Shift+X)). Search for 'C++'. Select Install.
-
Documentation for Visual Studio Code
Download VS Code for Windows, macOS, or Linux. Follow the setup guide to install and configure VS Code for your OS. Discover the key features of VS Code with the step-by-step tutorial. Get started with GitHub Copilot, your AI coding assistant. Write code in your favorite programming language.
-
Glob Patterns Reference - Visual Studio Code
VS Code supports the following glob syntax: [] to declare a range of characters to match (example.[0-9] to match on example.0, example.1, …) Note: Paths are separated by / and not \ even on Windows. But when applied, glob patterns will match paths with both slash and backslashes.
-
Configure VS Code for Microsoft C++
In this tutorial, you configure Visual Studio Code to use the Microsoft Visual C++ compiler and debugger on Windows. After configuring VS Code, you will compile and debug a simple Hello World program in VS Code. This tutorial does not teach you details about the Microsoft C++ toolset or the C++ language.
-
Terminal Basics - Visual Studio Code
Visual Studio Code includes a full featured integrated terminal that starts at the root of your workspace. It provides integration with the editor to support features like links and error detection. The integrated terminal can run commands such as mkdir and git just like a standalone terminal. You can open a terminal as follows:
-
Getting Started with Java in VS Code - Visual Studio Code
To use Java within Visual Studio Code, you need to install a Java Development Kit (JDK) on your local environment. JDK is a software development environment used for developing Java applications. The Extension Pack for Java supports Java version 1.8 or above. Note: To configure JDKs for your projects, see Configure Runtime for Projects.
-
Document Selectors | Visual Studio Code Extension API
Extensions can filter their features based on document selectors by language, file type, and location. This topic discusses document selectors, document schemes, and what extensions authors should be aware about. Not all text documents are stored on disk, for example, newly created documents.
-
Polyglot Notebooks in VS Code
Polyglot programming is the practice of using multiple programming languages to leverage the strength of each language for different tasks. What are Notebooks? Notebooks are interactive files that allow the mixing of executable code, visualizations, equations, and narrative text.