Skip to content

Commit e6b7bd9

Browse files
committed
remove context view
1 parent 1d4827c commit e6b7bd9

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

digma-0.5.25.tgz

-2.54 MB
Binary file not shown.

package.json

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,10 @@
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": [{

src/extension.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { AnalyticsProvider} from './services/analyticsProvider';
44
import { SymbolProvider } from './services/languages/symbolProvider';
55
import { PythonLanguageExtractor } from "./services/languages/python/languageExtractor";
66
import { CSharpLanguageExtractor } from './services/languages/csharp/languageExtractor';
7-
import { ContextView } from './views/contextView';
87
import { Settings } from './settings';
98
import { SourceControl, Git } from './services/sourceControl';
109
import { 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);

0 commit comments

Comments
 (0)