Skip to content

Latest commit

 

History

History
109 lines (73 loc) · 2.32 KB

DEV.md

File metadata and controls

109 lines (73 loc) · 2.32 KB

Develop

doc:

env: nodev16.8.0

npm install -g yo generator-code

hello world 命令如何生效的

doc: https://code.visualstudio.com/api/get-started/extension-anatomy

  1. 在 package.json 中声明
"activationEvents": [
    "onCommand:tsdoc-insert.helloWorld"
  ],

用户在执行 hello world 命令的时候 插件变成激活的

  1. 在 package.json 中声明
"contributes": {
    "commands": [
      {
        "command": "tsdoc-insert.helloWorld",
        "title": "Hello World"
      }
    ]
  },

使得 ctrl+shift+P 调出命令行的时候,命令面板中出现 hello world

  1. 在源码的 extention.ts 中使用 vscode API 绑定命令要执行的函数
vscode.commands.registerCommand('tsdoc-insert.helloWorld', () => {
		// The code you place here will be executed every time your command is executed
		// Display a message box to the user
		vscode.window.showInformationMessage('Hello vscode from tsdoc-insert!');
	});

Test

doc:

run 'yarn test'

Publish

doc:

npm install -g vsce
  • 补充使用文档(注意图片使用https)
  • 补充LICENSE
  • 补充icon(注意不能用svg)

发布前准备

  • 在 marketplace.visualstudio.com/ 中注册并登录Microsoft账号
  • 在个人主页创建新的Azure DevOps组织
  • 创建个人token
  • 创建普遍publisher
  • vsce login publisher

发布:

TODO

v1.1.0

  • 快捷键

参考

vscode 插件:tsdoc-comment

自动将//注释转化为/** */注释

registerTextEditorCommand

这个命令与 registerCommand 的差异在于

  • 只在编辑器激活的时候执行命令
  • callback 有 ative editor 和 edit-builder 的访问权限

正则表达式匹配代码块的注释

正则表达式匹配代码块的注释