File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11import * as vscode from "vscode" ;
2+ import { QuickPickItem } from "vscode" ;
23import { DocumentInfo , DocumentInfoProvider } from "../../../services/documentInfoProvider" ;
4+ import { EditorHelper } from "../../../services/EditorHelper" ;
5+ import { CodeObjectLocationInfo } from "../../../services/languages/extractors" ;
36import { WorkspaceState } from "../../../state" ;
47import { CodeObjectInsight , InsightImportance } from "../InsightListView/IInsightListViewItemsCreator" ;
5- import { QuickPickItem } from "vscode" ;
6- import { CodeObjectLocationInfo } from "../../../services/languages/extractors" ;
7- import { EditorHelper } from "../../../services/EditorHelper" ;
88
99export interface InsightPickItem extends QuickPickItem {
1010 location : CodeObjectLocationInfo ;
@@ -48,7 +48,7 @@ export class InsightsStatusBar implements vscode.Disposable {
4848 const item = selection [ 0 ] as InsightPickItem ;
4949 const file = await _editorHelper . openTextDocumentFromUri ( item . location . documentUri ) ;
5050 _editorHelper . openFileAndLine ( file , item . location . range . start . line ) ;
51- await vscode . commands . executeCommand ( "workbench.view.extension.digma " ) ;
51+ await vscode . commands . executeCommand ( "workbench.view.extension.codeAnalytics " ) ;
5252
5353
5454
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ export class CodeAnalyticsView implements vscode.Disposable {
166166 ) ;
167167 }
168168 await vscode . commands . executeCommand (
169- "workbench.view.extension.digma "
169+ "workbench.view.extension.codeAnalytics "
170170 ) ;
171171 }
172172 ) ,
You can’t perform that action at this time.
0 commit comments