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

修改 循环转换的顺序:CAMEL_CASE → SNAKE_CASE → PASCAL_CASE → KEBAB_CASE → SPACE_CASE → ...

This commit is contained in:
程序员小墨 2024-06-13 09:15:08 +08:00
parent bf5c90a7ef
commit d4277da88b
2 changed files with 4 additions and 5 deletions

View File

@ -9,13 +9,13 @@ A powerful variable naming conversion extension. Supports one-key conversion & c
- ✅ 支持多窗口 (不支持子窗口状态栏) Support subwindow (subwindow status bar are not supported) - ✅ 支持多窗口 (不支持子窗口状态栏) Support subwindow (subwindow status bar are not supported)
- ✅ 支持撤回 & 重做 Support undo & redo (Ctrl + Z / Ctrl + Y) - ✅ 支持撤回 & 重做 Support undo & redo (Ctrl + Z / Ctrl + Y)
## 如何使用? How to Use? > 🔭 Tips for Chinese users: 如果您无法看到下文图片,请[点这里](https://gitee.com/coder-xiaomo/variable-conversion-vscode-extension/blob/main/README.md)查看
> 🔭 Tips for Chinese users: 如果您无法看到下文图片,请[点击这里查看](https://gitee.com/coder-xiaomo/variable-conversion-vscode-extension/blob/main/README.md) ## 如何使用? How to Use?
### 循环转换 Cyclic conversion (Beta) ### 循环转换 Cyclic conversion (Beta)
选中需要转换的内容,然后按下 `Ctrl + Alt + [``Ctrl + Alt + ]` 即可前后灵活切换变量命名方式。 选中需要转换的内容,然后按下 `Ctrl + Alt + [``Ctrl + Alt + ]` 即可前后灵活切换变量命名方式。 <br>
Select what you want to convert in the editor, and then press `Ctrl + Alt + [` or `Ctrl + Alt + ]` to flexibly convert variable name flexibly. Select what you want to convert in the editor, and then press `Ctrl + Alt + [` or `Ctrl + Alt + ]` to flexibly convert variable name flexibly.
![](image/cyclic-conversion.gif) ![](image/cyclic-conversion.gif)

View File

@ -366,9 +366,8 @@ export const quickPickSupportCases = [
*/ */
export const cyclicConvertCaseOrder = [ export const cyclicConvertCaseOrder = [
SupportCase.CAMEL_CASE, SupportCase.CAMEL_CASE,
SupportCase.PASCAL_CASE,
SupportCase.SNAKE_CASE, SupportCase.SNAKE_CASE,
SupportCase.PASCAL_CASE,
SupportCase.KEBAB_CASE, SupportCase.KEBAB_CASE,
SupportCase.SPACE_CASE, SupportCase.SPACE_CASE,