10 results found
-
Built-in Commands | Visual Studio Code Extension API
Built-in Commands This document lists a subset of Visual Studio Code commands that you might use with vscode.commands.executeCommand API. Read the Commands guide for how to use the commands API. The following is a sample of how to open a new folder in VS Code:
-
Glob Patterns Reference - Visual Studio Code
Visual Studio Code glob patterns referenceGlob Patterns Reference Visual Studio Code uses glob patterns in many components. Examples include setting file and folder includes/excludes in features such as Search, hiding files from the File Explorer or marking them readonly, and setting up programming language-specific file associations. Glob pattern syntax VS Code supports the following glob ...
-
Basic editing - Visual Studio Code
Basic editing Visual Studio Code is an editor first and foremost, and includes the features you need for highly productive source code editing. This topic takes you through the basics of the editor and helps you get moving with your code. Keyboard shortcuts Being able to keep your hands on the keyboard when writing code is crucial for high productivity. VS Code has a rich set of default ...
-
Appendix - Visual Studio Code
Appendix This is additional information for Visual Studio Code tasks. Schema for tasks.json The following interfaces define the basic schema of the tasks.json file. Note: Some task options are contributed by VS Code extensions. You can use tasks.json IntelliSense to find a complete list, using the Trigger Suggestions command (⌃Space (Windows, Linux Ctrl+Space)).
-
VS Code API | Visual Studio Code Extension API
VS Code API VS Code API is a set of JavaScript APIs that you can invoke in your Visual Studio Code extension. This page lists all VS Code APIs available to extension authors. API namespaces and classes This listing is compiled from the vscode.d.ts file from the VS Code repository. authentication
-
December 2015 (0.10.6) - Visual Studio Code
Once enabled, the search term will match on the full path of the file by default, without having to include path separators in the query. In addition, a search term will match in a more fuzzy way on the path compared to the default. For example, a search for fb will match a file foobar because the filename contains f and b.
-
User and workspace settings - Visual Studio Code
The search bar remembers your settings search queries and supports undo or redo (⌘Z (Windows, Linux Ctrl+Z) / ⇧⌘Z (Windows, Linux Ctrl+Y)). You can quickly clear a search term or filter with the Clear Settings Search Input button at the right of the search bar.
-
Visual Studio Code tips and tricks
Visual Studio Code tips and tricks Use the tips and tricks in this article to jump right in and learn how to be productive with Visual Studio Code. Become familiar with the powerful editing, code intelligence, and source code control features and learn useful keyboard shortcuts. Make sure to explore the other in-depth topics in Getting Started and the User Guide to learn more. If you're just ...
-
Configure VS Code for Microsoft C++
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. For those subjects, there are many good resources ...
-
Text Buffer Reimplementation - Visual Studio Code
Text Buffer Reimplementation March 23, 2018 by Peng Lyu, @njukidreborn The Visual Studio Code 1.21 release includes a brand new text buffer implementation which is much more performant, both in terms of speed and memory usage. In this blog post, I'd like to tell the story of how we selected and designed the data structures and algorithms that led to those improvements. Performance discussions ...