Skip to content

Commit b1da120

Browse files
committed
Rename
1 parent ea13d07 commit b1da120

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client/common/terminal/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class TerminalService implements ITerminalService, Disposable {
6969
resource: this.options?.resource,
7070
preserveFocus,
7171
interpreter: this.options?.interpreter,
72-
doNotShow: this.options?.hideFromUser
72+
hideFromUser: this.options?.hideFromUser
7373
});
7474

7575
if (!this.options?.hideFromUser) {

src/client/common/terminal/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export type TerminalActivationOptions = {
113113
*
114114
* @type {boolean}
115115
*/
116-
doNotShow?: boolean;
116+
hideFromUser?: boolean;
117117
};
118118
export interface ITerminalActivator {
119119
activateEnvironmentInTerminal(terminal: Terminal, options?: TerminalActivationOptions): Promise<boolean>;

0 commit comments

Comments
 (0)