1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

新增 空格分隔 + 小驼峰/大驼峰/全小写/全大写;修正 KEBAB_PASCAL_CASE, KEBAB_UPPER_CASE 关键词错误;添加测试用例并通过测试用例

This commit is contained in:
zhangbk1
2024-04-07 14:48:54 +08:00
parent ef42f97944
commit 62b9acc38f
9 changed files with 310 additions and 10 deletions

View File

@@ -96,7 +96,7 @@ export function handleQuickPick() {
title: '请选择需要转换的命名类型...',
placeHolder: '点击转换,输入关键词可快速选择'
}).then(pickItem => {
if (pickItem === undefined) {
if (!editor || pickItem === undefined) {
return;
}