@theia/terminal 1.34.2 → 1.34.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +641 -641
- package/README.md +30 -30
- package/lib/browser/base/terminal-service.d.ts +34 -34
- package/lib/browser/base/terminal-service.js +7 -7
- package/lib/browser/base/terminal-widget.d.ts +184 -184
- package/lib/browser/base/terminal-widget.js +34 -34
- package/lib/browser/index.d.ts +1 -1
- package/lib/browser/index.js +28 -28
- package/lib/browser/search/terminal-search-container.d.ts +3 -3
- package/lib/browser/search/terminal-search-container.js +28 -28
- package/lib/browser/search/terminal-search-widget.d.ts +30 -30
- package/lib/browser/search/terminal-search-widget.js +147 -147
- package/lib/browser/shell-terminal-profile.d.ts +19 -19
- package/lib/browser/shell-terminal-profile.js +39 -39
- package/lib/browser/terminal-contribution.d.ts +3 -3
- package/lib/browser/terminal-contribution.js +20 -20
- package/lib/browser/terminal-copy-on-selection-handler.d.ts +10 -10
- package/lib/browser/terminal-copy-on-selection-handler.js +103 -103
- package/lib/browser/terminal-file-link-provider.d.ts +24 -24
- package/lib/browser/terminal-file-link-provider.js +200 -200
- package/lib/browser/terminal-frontend-contribution.d.ts +112 -112
- package/lib/browser/terminal-frontend-contribution.js +994 -994
- package/lib/browser/terminal-frontend-module.d.ts +5 -5
- package/lib/browser/terminal-frontend-module.js +115 -115
- package/lib/browser/terminal-keybinding-contexts.d.ts +15 -15
- package/lib/browser/terminal-keybinding-contexts.js +71 -71
- package/lib/browser/terminal-link-helpers.d.ts +27 -27
- package/lib/browser/terminal-link-helpers.js +155 -155
- package/lib/browser/terminal-link-provider.d.ts +51 -51
- package/lib/browser/terminal-link-provider.js +197 -197
- package/lib/browser/terminal-preferences.d.ts +61 -61
- package/lib/browser/terminal-preferences.js +329 -329
- package/lib/browser/terminal-profile-service.d.ts +55 -55
- package/lib/browser/terminal-profile-service.js +149 -149
- package/lib/browser/terminal-quick-open-service.d.ts +36 -36
- package/lib/browser/terminal-quick-open-service.js +137 -137
- package/lib/browser/terminal-theme-service.d.ts +21 -21
- package/lib/browser/terminal-theme-service.js +218 -218
- package/lib/browser/terminal-url-link-provider.d.ts +11 -11
- package/lib/browser/terminal-url-link-provider.js +76 -76
- package/lib/browser/terminal-widget-impl.d.ts +173 -173
- package/lib/browser/terminal-widget-impl.js +769 -769
- package/lib/common/base-terminal-protocol.d.ts +100 -100
- package/lib/common/base-terminal-protocol.js +88 -88
- package/lib/common/shell-terminal-protocol.d.ts +29 -29
- package/lib/common/shell-terminal-protocol.js +22 -22
- package/lib/common/terminal-common-module.d.ts +7 -7
- package/lib/common/terminal-common-module.js +31 -31
- package/lib/common/terminal-protocol.d.ts +12 -12
- package/lib/common/terminal-protocol.js +21 -21
- package/lib/common/terminal-watcher.d.ts +13 -13
- package/lib/common/terminal-watcher.js +70 -70
- package/lib/node/base-terminal-server.d.ts +36 -36
- package/lib/node/base-terminal-server.js +252 -252
- package/lib/node/buffering-stream.d.ts +39 -39
- package/lib/node/buffering-stream.js +75 -75
- package/lib/node/buffering-stream.spec.d.ts +1 -1
- package/lib/node/buffering-stream.spec.js +43 -43
- package/lib/node/index.d.ts +1 -1
- package/lib/node/index.js +28 -28
- package/lib/node/shell-process.d.ts +26 -26
- package/lib/node/shell-process.js +106 -106
- package/lib/node/shell-terminal-server.d.ts +14 -14
- package/lib/node/shell-terminal-server.js +114 -114
- package/lib/node/shell-terminal-server.spec.d.ts +1 -1
- package/lib/node/shell-terminal-server.spec.js +35 -35
- package/lib/node/terminal-backend-contribution.d.ts +9 -9
- package/lib/node/terminal-backend-contribution.js +75 -75
- package/lib/node/terminal-backend-contribution.slow-spec.d.ts +1 -1
- package/lib/node/terminal-backend-contribution.slow-spec.js +54 -54
- package/lib/node/terminal-backend-module.d.ts +11 -11
- package/lib/node/terminal-backend-module.js +69 -69
- package/lib/node/terminal-server.d.ts +9 -9
- package/lib/node/terminal-server.js +64 -64
- package/lib/node/terminal-server.spec.d.ts +1 -1
- package/lib/node/terminal-server.spec.js +41 -41
- package/lib/node/test/terminal-test-container.d.ts +2 -2
- package/lib/node/test/terminal-test-container.js +40 -40
- package/lib/package.spec.js +25 -25
- package/package.json +9 -9
- package/src/browser/base/terminal-service.ts +60 -60
- package/src/browser/base/terminal-widget.ts +244 -244
- package/src/browser/index.ts +17 -17
- package/src/browser/search/terminal-search-container.ts +28 -28
- package/src/browser/search/terminal-search-widget.tsx +161 -161
- package/src/browser/shell-terminal-profile.ts +40 -40
- package/src/browser/style/terminal-search.css +93 -93
- package/src/browser/style/terminal.css +33 -33
- package/src/browser/terminal-contribution.ts +19 -19
- package/src/browser/terminal-copy-on-selection-handler.ts +92 -92
- package/src/browser/terminal-file-link-provider.ts +200 -200
- package/src/browser/terminal-frontend-contribution.ts +1048 -1048
- package/src/browser/terminal-frontend-module.ts +139 -139
- package/src/browser/terminal-keybinding-contexts.ts +52 -52
- package/src/browser/terminal-link-helpers.ts +187 -187
- package/src/browser/terminal-link-provider.ts +203 -203
- package/src/browser/terminal-preferences.ts +427 -427
- package/src/browser/terminal-profile-service.ts +170 -170
- package/src/browser/terminal-quick-open-service.ts +132 -132
- package/src/browser/terminal-theme-service.ts +209 -209
- package/src/browser/terminal-url-link-provider.ts +66 -66
- package/src/browser/terminal-widget-impl.ts +827 -827
- package/src/common/base-terminal-protocol.ts +183 -183
- package/src/common/shell-terminal-protocol.ts +50 -50
- package/src/common/terminal-common-module.ts +30 -30
- package/src/common/terminal-protocol.ts +32 -32
- package/src/common/terminal-watcher.ts +69 -69
- package/src/node/base-terminal-server.ts +279 -279
- package/src/node/buffering-stream.spec.ts +46 -46
- package/src/node/buffering-stream.ts +95 -95
- package/src/node/index.ts +17 -17
- package/src/node/shell-process.ts +101 -101
- package/src/node/shell-terminal-server.spec.ts +40 -40
- package/src/node/shell-terminal-server.ts +95 -95
- package/src/node/terminal-backend-contribution.slow-spec.ts +63 -63
- package/src/node/terminal-backend-contribution.ts +60 -60
- package/src/node/terminal-backend-module.ts +82 -82
- package/src/node/terminal-server.spec.ts +47 -47
- package/src/node/terminal-server.ts +52 -52
- package/src/node/test/terminal-test-container.ts +39 -39
- package/src/package.spec.ts +28 -28
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
// *****************************************************************************
|
|
2
|
-
// Copyright (C) 2017 Ericsson and others.
|
|
3
|
-
//
|
|
4
|
-
// This program and the accompanying materials are made available under the
|
|
5
|
-
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
-
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
-
//
|
|
8
|
-
// This Source Code may also be made available under the following Secondary
|
|
9
|
-
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
-
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
-
// with the GNU Classpath Exception which is available at
|
|
12
|
-
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
-
//
|
|
14
|
-
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
|
-
// *****************************************************************************
|
|
16
|
-
|
|
17
|
-
import { injectable } from '@theia/core/shared/inversify';
|
|
18
|
-
import { Emitter, Event } from '@theia/core/lib/common/event';
|
|
19
|
-
import {
|
|
20
|
-
IBaseTerminalClient,
|
|
21
|
-
IBaseTerminalExitEvent,
|
|
22
|
-
IBaseTerminalErrorEvent
|
|
23
|
-
} from './base-terminal-protocol';
|
|
24
|
-
|
|
25
|
-
@injectable()
|
|
26
|
-
export class TerminalWatcher {
|
|
27
|
-
|
|
28
|
-
getTerminalClient(): IBaseTerminalClient {
|
|
29
|
-
const exitEmitter = this.onTerminalExitEmitter;
|
|
30
|
-
const errorEmitter = this.onTerminalErrorEmitter;
|
|
31
|
-
const storeTerminalEnvVariablesEmitter = this.onStoreTerminalEnvVariablesRequestedEmitter;
|
|
32
|
-
const updateTerminalEnvVariablesEmitter = this.onUpdateTerminalEnvVariablesRequestedEmitter;
|
|
33
|
-
return {
|
|
34
|
-
storeTerminalEnvVariables(data: string): void {
|
|
35
|
-
storeTerminalEnvVariablesEmitter.fire(data);
|
|
36
|
-
},
|
|
37
|
-
updateTerminalEnvVariables(): void {
|
|
38
|
-
updateTerminalEnvVariablesEmitter.fire(undefined);
|
|
39
|
-
},
|
|
40
|
-
onTerminalExitChanged(event: IBaseTerminalExitEvent): void {
|
|
41
|
-
exitEmitter.fire(event);
|
|
42
|
-
},
|
|
43
|
-
onTerminalError(event: IBaseTerminalErrorEvent): void {
|
|
44
|
-
errorEmitter.fire(event);
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
private onTerminalExitEmitter = new Emitter<IBaseTerminalExitEvent>();
|
|
50
|
-
private onTerminalErrorEmitter = new Emitter<IBaseTerminalErrorEvent>();
|
|
51
|
-
private onStoreTerminalEnvVariablesRequestedEmitter = new Emitter<string>();
|
|
52
|
-
private onUpdateTerminalEnvVariablesRequestedEmitter = new Emitter<undefined>();
|
|
53
|
-
|
|
54
|
-
get onTerminalExit(): Event<IBaseTerminalExitEvent> {
|
|
55
|
-
return this.onTerminalExitEmitter.event;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
get onTerminalError(): Event<IBaseTerminalErrorEvent> {
|
|
59
|
-
return this.onTerminalErrorEmitter.event;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
get onStoreTerminalEnvVariablesRequested(): Event<string> {
|
|
63
|
-
return this.onStoreTerminalEnvVariablesRequestedEmitter.event;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
get onUpdateTerminalEnvVariablesRequested(): Event<undefined> {
|
|
67
|
-
return this.onUpdateTerminalEnvVariablesRequestedEmitter.event;
|
|
68
|
-
}
|
|
69
|
-
}
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2017 Ericsson and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import { injectable } from '@theia/core/shared/inversify';
|
|
18
|
+
import { Emitter, Event } from '@theia/core/lib/common/event';
|
|
19
|
+
import {
|
|
20
|
+
IBaseTerminalClient,
|
|
21
|
+
IBaseTerminalExitEvent,
|
|
22
|
+
IBaseTerminalErrorEvent
|
|
23
|
+
} from './base-terminal-protocol';
|
|
24
|
+
|
|
25
|
+
@injectable()
|
|
26
|
+
export class TerminalWatcher {
|
|
27
|
+
|
|
28
|
+
getTerminalClient(): IBaseTerminalClient {
|
|
29
|
+
const exitEmitter = this.onTerminalExitEmitter;
|
|
30
|
+
const errorEmitter = this.onTerminalErrorEmitter;
|
|
31
|
+
const storeTerminalEnvVariablesEmitter = this.onStoreTerminalEnvVariablesRequestedEmitter;
|
|
32
|
+
const updateTerminalEnvVariablesEmitter = this.onUpdateTerminalEnvVariablesRequestedEmitter;
|
|
33
|
+
return {
|
|
34
|
+
storeTerminalEnvVariables(data: string): void {
|
|
35
|
+
storeTerminalEnvVariablesEmitter.fire(data);
|
|
36
|
+
},
|
|
37
|
+
updateTerminalEnvVariables(): void {
|
|
38
|
+
updateTerminalEnvVariablesEmitter.fire(undefined);
|
|
39
|
+
},
|
|
40
|
+
onTerminalExitChanged(event: IBaseTerminalExitEvent): void {
|
|
41
|
+
exitEmitter.fire(event);
|
|
42
|
+
},
|
|
43
|
+
onTerminalError(event: IBaseTerminalErrorEvent): void {
|
|
44
|
+
errorEmitter.fire(event);
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
private onTerminalExitEmitter = new Emitter<IBaseTerminalExitEvent>();
|
|
50
|
+
private onTerminalErrorEmitter = new Emitter<IBaseTerminalErrorEvent>();
|
|
51
|
+
private onStoreTerminalEnvVariablesRequestedEmitter = new Emitter<string>();
|
|
52
|
+
private onUpdateTerminalEnvVariablesRequestedEmitter = new Emitter<undefined>();
|
|
53
|
+
|
|
54
|
+
get onTerminalExit(): Event<IBaseTerminalExitEvent> {
|
|
55
|
+
return this.onTerminalExitEmitter.event;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
get onTerminalError(): Event<IBaseTerminalErrorEvent> {
|
|
59
|
+
return this.onTerminalErrorEmitter.event;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
get onStoreTerminalEnvVariablesRequested(): Event<string> {
|
|
63
|
+
return this.onStoreTerminalEnvVariablesRequestedEmitter.event;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
get onUpdateTerminalEnvVariablesRequested(): Event<undefined> {
|
|
67
|
+
return this.onUpdateTerminalEnvVariablesRequestedEmitter.event;
|
|
68
|
+
}
|
|
69
|
+
}
|