File tree Expand file tree Collapse file tree 3 files changed +5
-12
lines changed
Expand file tree Collapse file tree 3 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 7272 "contributes" : {
7373 "views" : {
7474 "digma" : [{
75- "type" : " webview" ,
76- "id" : " context" ,
77- "name" : " Context"
78- },
79- {
80- "type" : " webview" ,
81- "id" : " codeAnalytics" ,
82- "name" : " CodeAnalytics"
83- }
84- ]
75+ "type" : " webview" ,
76+ "id" : " codeAnalytics" ,
77+ "name" : " CodeAnalytics"
78+ }]
8579 },
8680 "viewsContainers" : {
8781 "activitybar" : [{
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { AnalyticsProvider} from './services/analyticsProvider';
44import { SymbolProvider } from './services/languages/symbolProvider' ;
55import { PythonLanguageExtractor } from "./services/languages/python/languageExtractor" ;
66import { CSharpLanguageExtractor } from './services/languages/csharp/languageExtractor' ;
7- import { ContextView } from './views/contextView' ;
87import { Settings } from './settings' ;
98import { SourceControl , Git } from './services/sourceControl' ;
109import { DocumentInfoProvider } from './services/documentInfoProvider' ;
@@ -41,7 +40,7 @@ export async function activate(context: vscode.ExtensionContext)
4140 }
4241 }
4342 context . subscriptions . push ( new AnaliticsCodeLens ( documentInfoProvider ) ) ;
44- context . subscriptions . push ( new ContextView ( analyticsProvider , context . extensionUri ) ) ;
43+ // context.subscriptions.push(new ContextView(analyticsProvider, context.extensionUri));
4544 context . subscriptions . push ( new MethodCallErrorTooltip ( documentInfoProvider , codeInspector ) ) ;
4645 context . subscriptions . push ( sourceControl ) ;
4746 context . subscriptions . push ( documentInfoProvider ) ;
You can’t perform that action at this time.
0 commit comments