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:
-
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 ...
-
July 2022 (version 1.70) - Visual Studio Code
Search multi-select - Select and then act on multiple search results. Tree view search and filtering - Find and filter in tree views such as the Find Explorer. Terminal improvements - Shell integration on by default, extended PowerShell keybindings. Command line option --merge - Use the 3-way merge editor as your default merge tool.
-
Commands | Visual Studio Code Extension API
To find available commands: Browse the keyboard shortcuts Look through VS Code's built-in advanced commands api Command URIs Commands URIs are links that execute a given command. They can be used as clickable links in hover text, completion item details, or inside of webviews. A command URI uses the command scheme followed by the command name. The command URI for the editor.action ...
-
September 2016 (version 1.6) - Visual Studio Code
Search term history - Easily reuse past search terms in the Search box. Launch script support - It's now possible to launch an NPM script before debugging. Workspace recommendations - Provide extension recommendations for other members of your team to use. API for Settings - It's now possible to programmatically change settings.
-
Terminal Shell Integration - Visual Studio Code
One of the biggest features this enables is enhanced resolving of links in the terminal. Take a link package.json for example, when the link is activated while shell integration is disabled this will open a search quick pick with package.json as the filter if there are multiple package.json files in the workspace.
-
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.
-
Bracket pair colorization 10,000x faster - Visual Studio Code
Note that this approach is significantly different from data structures that are directly indexed by lines (such as using a string array to describe the line contents of a document). In particular, this approach can do a single binary search across and within lines.
-
Node.js debugging in VS Code
The Visual Studio Code editor includes Node.js debugging support. Set breakpoints, step-in, inspect variables and more.
-
Tree View API | Visual Studio Code Extension API
Tree View API The Tree View API allows extensions to show content in the sidebar in Visual Studio Code. This content is structured as a tree and conforms to the style of the built-in views of VS Code. For example, the built-in References Search View extension shows reference search results as a separate view. The Find All References results are displayed in a References: Results Tree View ...