10 results found
-
Debugger Extension | Visual Studio Code Extension API
Debugger Extension Visual Studio Code's debugging architecture allows extension authors to easily integrate existing debuggers into VS Code, while having a common user interface with all of them. VS Code ships with one built-in debugger extension, the Node.js debugger extension, which is an excellent showcase for the many debugger features supported by VS Code: This screenshot shows the ...
-
VS Code API | Visual Studio Code Extension API
Show progress in the Source Control viewlet while running the given callback and while its returned promise isn't resolve or rejected. deprecated- Use withProgressinstead. workspace Namespace for dealing with the current workspace. or more folders that are opened in an editor window (instance). It is also possible to open an editor without a ...
-
Views | Visual Studio Code Extension API
UX guidelines for views in a Visual Studio Code extension.
-
Custom Layout - Visual Studio Code
Custom Layout Visual Studio Code comes with a simple user interface and convenient default layout. At the same time, VS Code provides options and settings to let you customize the UI layout to suit your preferences and work style. In this topic, we'll highlight various UI customizations so you can display views, editors, and panels in the way that's most productive for you. This article starts ...
-
Debug code with Visual Studio Code
One of the great things in Visual Studio Code is debugging support. Set breakpoints, step-in, inspect variables and more.
-
User interface - Visual Studio Code
User interface At its heart, Visual Studio Code is a code editor. Like many other code editors, VS Code adopts a common user interface and layout of an explorer on the left, showing all of the files and folders you have access to, and an editor on the right, showing the content of the files you have opened.
-
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:
-
Webview API | Visual Studio Code Extension API
Webview API The webview API allows extensions to create fully customizable views within Visual Studio Code. For example, the built-in Markdown extension uses webviews to render Markdown previews. Webviews can also be used to build complex user interfaces beyond what VS Code's native APIs support. Think of a webview as an iframe within VS Code that your extension controls. A webview can render ...
-
Settings | Visual Studio Code Extension API
Settings Settings are how a user can configure your extension. Settings can be inputs boxes, booleans, dropdowns, lists, key/value pairs. If your extension requires the user to configure specific settings, you can open the Settings UI and query your extension setting via the setting ID. ️ Do Add default values to each setting Add clear descriptions to each setting Link to documentation for ...
-
September 2020 (version 1.50) - Visual Studio Code
References Viewlet API The references viewlet now exports an API that allows its content to be defined by other extensions. New theme colors tab.lastPinnedBorder: Border on the right of the last pinned editor to separate from unpinned editors. gitDecoration.stageDeletedResourceForeground: Foreground color for staged deletions git decorations.