实现 快捷键 Ctrl + Shift + T 显示 vscode QickPick 弹窗
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
// 插件 id 及名称
|
||||
"name": "variable-conversion",
|
||||
"displayName": "Variable Conversion [Under development(正在开发中)]",
|
||||
"description": "A variable naming conversion extension. You can use it through the editer menu, shortcut keys and bottom bar. Support camel, pascal, snake, kebab(spinal), lower, upper case, and more. \n变量名转换插件,支持右键菜单、快捷键、底栏等多种方式使用,支持小驼峰、大驼峰(帕斯卡)、下划线(蛇形)、连字符(脊柱式)、全小写、全大写等常用命名方式(及组合)转换。",
|
||||
"description": "一个强大的变量名转换插件,支持右键菜单、快捷键、底栏等多种方式使用,支持小驼峰、大驼峰(帕斯卡)、下划线(蛇形)、连字符(脊柱式)、全小写、全大写等常用命名方式(及组合)转换。 \nA powerful variable naming conversion extension. You can use it through the editer menu, shortcut keys and bottom bar. Support camel, pascal, snake, kebab(spinal), lower, upper case, and more.",
|
||||
// 版本号
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.4",
|
||||
// logo
|
||||
"icon": "image/logo.png",
|
||||
"publisher": "coder-xiaomo",
|
||||
@@ -31,8 +31,10 @@
|
||||
],
|
||||
"main": "./out/extension.js",
|
||||
"activationEvents": [
|
||||
"onStartupFinished", // 当编辑器完成启动时激活
|
||||
"onTextSelected" // 当用户选中文本时激活
|
||||
// 当编辑器完成启动时激活
|
||||
"onStartupFinished",
|
||||
// 当用户选中文本时激活
|
||||
"onTextSelected"
|
||||
],
|
||||
"contributes": {
|
||||
"commands": [
|
||||
|
Reference in New Issue
Block a user