-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[plug-in] OutputChannel.show
does not show
#4214
Comments
linking #4155 |
Signed-off-by: Anton Kosyakov <anton.kosyakov@typefox.io>
Signed-off-by: Anton Kosyakov <anton.kosyakov@typefox.io>
seems reproduced in latest version, please check it@akosyakov |
@wangshen-sap Could you file a new issue with steps to reproduce please? |
the code like this if (!outputPanel) { mck output channel is not shown after calling this, you need select "mck" from dropdown list, then the "mck" outputchannel will show @akosyakov |
the version should be 0.16.1 |
It would help if someone prepares a VS Code extension and verify #4214 (comment) |
Closing. The API works well for me, and was confirmed with output-show-0.0.1.vsix.zip. export function activate(context: vscode.ExtensionContext) {
const channel = vscode.window.createOutputChannel('test');
let disposable = vscode.commands.registerCommand('output-show.show', () => {
channel.show();
channel.appendLine('test line.');
});
context.subscriptions.push(disposable);
} |
Reproducible with
grunt
VS Code extension whengrunt
is not installed.The text was updated successfully, but these errors were encountered: