We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8b73f4 commit 94faecfCopy full SHA for 94faecf
src/client/extension.ts
@@ -154,7 +154,7 @@ function updateStatusBar(editor: TextEditor) {
154
statusBarItem.command = 'graphqlForVSCode.showOutputChannel';
155
statusBarItem.color = statusUI.color;
156
157
- if (editor && statusBarActivationLanguageIds.indexOf(editor.document.languageId) > -1) {
+ if (editor && statusBarActivationLanguageIds.indexOf(editor.document.languageId) > -1 || editor.document.uri.scheme === 'output') {
158
statusBarItem.show();
159
} else {
160
statusBarItem.hide();
0 commit comments