Skip to content

Commit

Permalink
NEW (Extension) @W-16286379@ Change command text and output channel t…
Browse files Browse the repository at this point in the history
…ext based on Blitz testing feedback (#110)
  • Loading branch information
jag-j committed Jul 26, 2024
1 parent 530cc8f commit 8876943
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,23 +81,23 @@
"commands": [
{
"command": "sfca.runOnActiveFile",
"title": "SFDX: Scan current file with Code Analyzer"
"title": "SFDX: Scan Current File with Code Analyzer"
},
{
"command": "sfca.runOnSelected",
"title": "SFDX: Scan selected files or folders with Code Analyzer"
"title": "SFDX: Scan Selected Files or Folders with Code Analyzer"
},
{
"command": "sfca.runDfaOnSelectedMethod",
"title": "SFDX: Scan selected method with Graph Engine path-based analysis"
"title": "SFDX: Scan Selected Method with Graph Engine Path-Based Analysis"
},
{
"command": "sfca.removeDiagnosticsOnActiveFile",
"title": "SFDX: Clear Code Analyzer violations from current file"
"title": "SFDX: Clear Code Analyzer Violations from Current File"
},
{
"command": "sfca.removeDiagnosticsOnSelectedFile",
"title": "SFDX: Clear Code Analyzer violations from selected files or folders"
"title": "SFDX: Clear Code Analyzer Violations from Selected Files or Folders"
},
{
"command": "sfca.runDfa",
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<vscode
const extensionHrStart = process.hrtime();

// Define a log output channel that we can use, and clear it so it's fresh.
outputChannel = vscode.window.createOutputChannel('sfca', {log: true});
outputChannel = vscode.window.createOutputChannel('Salesforce Code Analyzer', {log: true});
outputChannel.clear();
outputChannel.show();

Expand Down

0 comments on commit 8876943

Please sign in to comment.