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

创建路径转换状态栏按钮

This commit is contained in:
2024-12-14 22:33:58 +08:00
parent 2a1cf5488d
commit 948976f7ee
2 changed files with 32 additions and 13 deletions

View File

@@ -66,8 +66,9 @@ export function activate(context: vscode.ExtensionContext) {
// 循环转换:记录当前选中内容,并且进行转换
let eol: EOL = textEditor.document.eol === vscode.EndOfLine.CRLF ? '\r\n' : '\n';
// 变量循环转换 2024.04.09
CyclicConversionVariable.onUserSelectionUpdated(selections, textList, eol);
// 路径循环转换 2024.12.14
CyclicConversionPath.onUserSelectionUpdated(selections, textList, eol);
};