8000 [WIP]: Theia 1.27.0 signed by kittaakos · Pull Request #1241 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content

[WIP]: Theia 1.27.0 signed #1241

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

Closed
wants to merge 11 commits into from
Next Next commit
ignore the arduino LS output channel.
Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
  • Loading branch information
Akos Kitta committed Jul 22, 2022
commit 93dc4d848ba6d5125f5d414c1ba85b24c4d70683
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
import { injectable, inject } from '@theia/core/shared/inversify';
import {
injectable,
inject,
postConstruct,
} from '@theia/core/shared/inversify';
import { CommandService } from '@theia/core/lib/common/command';
import { OutputCommands } from '@theia/output/lib/browser/output-commands';
import { PluginInfo } from '@theia/plugin-ext/lib/common/plugin-api-rpc';
import { OutputChannelRegistryMainImpl as TheiaOutputChannelRegistryMainImpl } from '@theia/plugin-ext/lib/main/browser/output-channel-registry-main';

@injectable()
export class OutputChannelRegistryMainImpl extends TheiaOutputChannelRegistryMainImpl {
@postConstruct()
protected init(): void {
console.log('init');
}
@inject(CommandService)
protected override readonly commandService: CommandService;

Expand Down
0