@@ -297709,11 +297709,10 @@ var CommandTreeDataProvider = class {
297709297709 // Mapping of command IDs to their display names, icons, and colors
297710297710 this.extensionCommands = {
297711297711 "leetcode-cph-helper-by-ashish.fetchLeetCodeTestCases": { label: "Fetch Test Cases(CTRL+1)", icon: "cloud-download", color: "charts.green" },
297712- "leetcode-cph-helper-by-ashish.runTestCases": { label: "Run Test Cases(CTRL+5)", icon: "play-circle", color: "charts.blue" },
297713- "leetcode-cph-helper-by-ashish.writeSolutionFile": { label: "Write Solution File(CTRL+4)", icon: "file-code", color: "charts.yellow" },
297714- "leetcode-test-case-manager.getSolutionFileDirectory": { label: "Get Solution File Directory(CTRL+3)", icon: "folder", color: "charts.orange" },
297715- "leetcode-cph-helper-by-ashish.getIOFileDirectory": { label: "Get I/O File Directory(CTRL+2)", icon: "folder", color: "charts.red" },
297716- "leetcode-cph-helper-by-ashish.showLeetCodeProblemLinks": { label: "Show LeetCode Problem Links(CTRL+6)", icon: "link", color: "charts.purple" }
297712+ "leetcode-cph-helper-by-ashish.runTestCases": { label: "Run Test Cases(CTRL+4)", icon: "play-circle", color: "charts.blue" },
297713+ "leetcode-cph-helper-by-ashish.writeSolutionFile": { label: "Write Solution File(CTRL3)", icon: "file-code", color: "charts.yellow" },
297714+ "leetcode-cph-helper-by-ashish.getIOFileDirectory": { label: "Get I/O & Soluton File Directory(CTRL+2)", icon: "folder", color: "charts.red" },
297715+ "leetcode-cph-helper-by-ashish.showLeetCodeProblemLinks": { label: "Show LeetCode Problem Links(CTRL+5)", icon: "link", color: "charts.purple" }
297717297716 };
297718297717 }
297719297718 // Returns a TreeItem representation of the given element
@@ -297799,24 +297798,12 @@ function activate(context2) {
297799297798 async () => {
297800297799 try {
297801297800 await vscode4.env.clipboard.writeText(baseDirectory);
297802- vscode4.window.showInformationMessage(`I/O text file directory path copied to clipboard: ${baseDirectory}`);
297801+ vscode4.window.showInformationMessage(`I/O & Solution file directory path copied to clipboard: ${baseDirectory}`);
297803297802 } catch (error) {
297804297803 vscode4.window.showErrorMessage(`Error: ${error}`);
297805297804 }
297806297805 }
297807297806 );
297808- const getSolutionFileDirectoryCommand = vscode4.commands.registerCommand(
297809- "leetcode-test-case-manager.getSolutionFileDirectory",
297810- async () => {
297811- try {
297812- const solutionDir = path12.join(baseDirectory, "dist", "test_cases");
297813- await vscode4.env.clipboard.writeText(solutionDir);
297814- vscode4.window.showInformationMessage(`Solution directory path copied to clipboard: ${solutionDir}`);
297815- } catch (error) {
297816- vscode4.window.showErrorMessage(`Error copying solution directory path: ${error}`);
297817- }
297818- }
297819- );
297820297807 const writeSolutionFileCommand = vscode4.commands.registerCommand(
297821297808 "leetcode-cph-helper-by-ashish.writeSolutionFile",
297822297809 async () => {
@@ -297987,7 +297974,7 @@ ${results.join("\n\n")}`, { modal: true });
297987297974 await vscode4.window.showTextDocument(document2);
297988297975 }
297989297976 );
297990- context2.subscriptions.push(fetchCommand, showLeetCodeProblemLinksCommand, getIOFileDirectoryCommand, getSolutionFileDirectoryCommand, writeSolutionFileCommand, runCommand);
297977+ context2.subscriptions.push(fetchCommand, showLeetCodeProblemLinksCommand, getIOFileDirectoryCommand, writeSolutionFileCommand, runCommand);
297991297978 const commandTreeDataProvider = new CommandTreeDataProvider();
297992297979 vscode4.window.registerTreeDataProvider("leetcodeHelperCommands", commandTreeDataProvider);
297993297980 vscode4.commands.executeCommand("workbench.view.extension.leetcodeHelper");
0 commit comments