Skip to content

Commit

Permalink
Rename "decompileNode" command to "ilspy.decompileNode" for convenience
Browse files Browse the repository at this point in the history
  • Loading branch information
Rpinski committed Dec 21, 2024
1 parent 6b941b1 commit 1efae2b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vscode-extension/src/commands/decompileNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function registerDecompileNode(
contentProvider: DecompilerTextDocumentContentProvider
) {
return vscode.commands.registerCommand(
"decompileNode",
"ilspy.decompileNode",
async (node: Node) => {
if (lastSelectedNode === node) {
return;
Expand Down
2 changes: 1 addition & 1 deletion vscode-extension/src/decompiler/DecompiledTreeProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class DecompiledTreeProvider implements TreeDataProvider<Node> {
? TreeItemCollapsibleState.Collapsed
: void 0,
command: {
command: "decompileNode",
command: "ilspy.decompileNode",
arguments: [node],
title: "Decompile",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class AnalyzeResultTreeProvider
tooltip: node.description,
collapsibleState: getTreeNodeCollapsibleState(node),
command: {
command: "decompileNode",
command: "ilspy.decompileNode",
arguments: [node],
title: "Decompile",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export class SearchResultTreeProvider implements TreeDataProvider<SearchTreeNode
tooltip: node.description,
collapsibleState: TreeItemCollapsibleState.None,
command: {
command: "decompileNode",
command: "ilspy.decompileNode",
arguments: [node],
title: "Decompile",
},
Expand Down

0 comments on commit 1efae2b

Please sign in to comment.