SupportCase 枚举前添加支持新命名方式需要做的修改;package.json 添加 description
This commit is contained in:
18
package.json
18
package.json
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "variable-conversion",
|
||||
"displayName": "Variable Conversion",
|
||||
"description": "",
|
||||
"description": "A variable naming conversion extension, support camel case, pascal case, kebab(spinal) case, snake case, snake upper case, upper case, lower case, camel snake case, and more. \n一个变量命名方式互相转换的 VSCode 插件,支持小驼峰(驼峰命名)、大驼峰(帕斯卡命名)、连字符(脊柱式命名)、下划线(蛇形命名)、驼峰蛇形命名、下划线大写、全大写、全小写等常用命名方式",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"vscode": "^1.87.0"
|
||||
@@ -33,6 +33,10 @@
|
||||
"command": "extension.toSnakeCase",
|
||||
"title": "下划线 / 蛇形命名 (Snake Case) [ foo_bar ]"
|
||||
},
|
||||
{
|
||||
"command": "extension.toCamelSnakeCase",
|
||||
"title": "驼峰蛇形命名 (Camel Snake Case) [ Foo_Bar ]"
|
||||
},
|
||||
{
|
||||
"command": "extension.toSnakeUpperCase",
|
||||
"title": "下划线大写 (Snake Upper Case) [ FOO_BAR ]"
|
||||
@@ -44,10 +48,6 @@
|
||||
{
|
||||
"command": "extension.toLowerCase",
|
||||
"title": "全小写 (Lower Case) [ foobar ]"
|
||||
},
|
||||
{
|
||||
"command": "extension.toCamelSnakeCase",
|
||||
"title": "驼峰蛇形命名 (Camel Snake Case) [ Foo_Bar ]"
|
||||
}
|
||||
],
|
||||
"keybindings": [
|
||||
@@ -82,6 +82,10 @@
|
||||
"command": "extension.toSnakeCase",
|
||||
"group": "group-extension"
|
||||
},
|
||||
{
|
||||
"command": "extension.toCamelSnakeCase",
|
||||
"group": "group-extension"
|
||||
},
|
||||
{
|
||||
"command": "extension.toSnakeUpperCase",
|
||||
"group": "group-extension"
|
||||
@@ -93,10 +97,6 @@
|
||||
{
|
||||
"command": "extension.toLowerCase",
|
||||
"group": "group-extension"
|
||||
},
|
||||
{
|
||||
"command": "extension.toCamelSnakeCase",
|
||||
"group": "group-extension"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
Reference in New Issue
Block a user