Skip to content

Commit

Permalink
Remove selector search tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DEVTomatoCake committed May 20, 2024
1 parent c7870a9 commit a279282
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vscExtension/src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,14 @@ const processEntries = async entries => {
matchWholeWord: true,
isCaseSensitive: true
}))
log("Search for @a executed")*/
log("Search for @a executed")
log(await vscode.commands.executeCommand("workbench.action.findInFiles", {
searchString: "@a",
matchWholeWord: true,
isCaseSensitive: true
}))
log("Search 2 for @a executed")
log("Search 2 for @a executed")*/
}

const mainScan = async () => {
Expand Down Expand Up @@ -377,15 +377,15 @@ class PackAnalyzer {
} else if (element.parent == "selectors") {
treeItem.label = "@" + element.item + ": " + localize(dpExclusive.selectors[element.item])
treeItem.iconPath = iconUrl("{DPICON|mcfunction}")
treeItem.command = {
/*treeItem.command = {
command: "editor.actions.findWithArgs",
title: "Find",
arguments: [{
searchString: "@" + element.item,
matchWholeWord: true,
isCaseSensitive: true
}]
}
}*/
} else if (element.item == "rpExclusive") {
treeItem.label = "Resource pack"
treeItem.iconPath = iconUrl("{DPICON|assets}")
Expand Down

0 comments on commit a279282

Please sign in to comment.