Skip to content

Commit bff44d1

Browse files
committed
Disable CallStack temporarily #10
1 parent 9ef17d6 commit bff44d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
}
195195
]
196196
},
197-
"views": {
197+
"//views": {
198198
"TextMate": [
199199
{
200200
"id": "TextMate-Call",
@@ -213,7 +213,7 @@
213213
}
214214
]
215215
},
216-
"menus": {
216+
"//menus": {
217217
"editor/context": [
218218
{
219219
"command": "textmate.callstack",
@@ -290,7 +290,7 @@
290290
}
291291
]
292292
},
293-
"commands": [
293+
"//commands": [
294294
{
295295
"command": "textmate.callstack",
296296
"title": "Show TextMate Calling Stack",

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export async function activate(context: vscode.ExtensionContext) {
3636
await initOniguruma(context);
3737
initTextMate(context);
3838
initDiagnostics(context);
39-
initCallStackView(context);
39+
// await initCallStackView(context);
4040
initTokenColorCustomizations(context);
4141

4242
// context.subscriptions.push(vscode.languages.registerHoverProvider(DocumentSelector, HoverProvider)); // Mouse over Hovers

0 commit comments

Comments
 (0)