Movatterモバイル変換


[0]ホーム

URL:


Version 1.107 is now available! Read about the new features and fixes from November.

Dismiss this update

Wrapping Up

In theYour First Extension topic, you learned how to create, run, and debug an extension. In theExtension Anatomy topic, you learned fundamental concepts to Visual Studio Code extension development. However, we have only seen the tip of the iceberg, and here are some suggested routes for furthering your VS Code extension development skills.

Extension Capabilities

In this section, we split theVS Code API andContribution Points into a few categories, each with short descriptions as to what your extension could achieve. Validate that your extension idea is achievable by reviewing theVS Code API or reading theExtension Capabilities section for new extension ideas.

Guides & Samples

We have a great collection of sample extensions that you can adapt from, and some of them include a detailed guide that explains the source code. You can find all samples and guides in theExtension Guide Listing or thevscode-extension-samples repository.

UX Guidelines

To help make your extension fit seamlessly into the VS Code user interface, refer to theUX Guidelines, where you'll learn the best practices for creating extension UI and conventions for following the preferred VS Code workflows.

Issue Reporting

VS Code users can report issues by using theHelp: Report Issue... command (workbench.action.openIssueReporter), or by typingissue in Quick Open (workbench.action.quickOpen) and then selecting an installed extension. This provides a consistent experience for users to report issues for the core product or installed extensions.

As an extension author, you can integrate your extension in theHelp: Report Issue... issue reporter flow, instead of contributing a separate issue reporter command. This integration also enables you to attach any additional information when users report an issue.

To integrate in the issue reporter flow, you need to contribute a custom command and aissue/reporter menu contribution point. This custom command will invokeopenIssueReporter.

An example of a contributed command and menu forcontributes inpackage.json (SeeContribution Points for adding a menu contribution and command):

"commands": [    {        "command":"extension.myCommand",        "title":"Report Issue"    }],    "menus": {        "issue/reporter": [            {                "command":"extension.myCommand"            }        ]    }

We ask extensions that previously contributed aworkbench.action.openIssueReporter command in the command palette to start using this new issue reporting flow.

Testing and Publishing

This section includes topics that help you develop high-quality VS Code extensions. For example, you can learn

12/10/2025

    [8]ページ先頭

    ©2009-2025 Movatter.jp