The currently active terminal or undefined
. The active terminal is the one that
currently has focus or most recently had focus.
The currently active terminal or `undefined`. The active terminal is the one that currently has focus or most recently had focus.
(creation-options)
The object used to initialize the terminal, this is useful for example to detecting the shell type of when the terminal was not launched by this extension or for detecting what folder the shell was launched in.
The object used to initialize the terminal, this is useful for example to detecting the shell type of when the terminal was not launched by this extension or for detecting what folder the shell was launched in.
(dispose)
Dispose and free associated resources.
Returns: void
Dispose and free associated resources. **Returns:** `void`
(exit-status)
The exit status of the terminal, this will be undefined while the terminal is active.
Example: Show a notification with the exit code when the terminal exits with a non-zero exit code.
window.onDidCloseTerminal(t => {
if (t.exitStatus && t.exitStatus.code) {
vscode.window.showInformationMessage(`Exit code: ${t.exitStatus.code}`);
}
});
The exit status of the terminal, this will be undefined while the terminal is active. **Example:** Show a notification with the exit code when the terminal exits with a non-zero exit code. ```typescript window.onDidCloseTerminal(t => { if (t.exitStatus && t.exitStatus.code) { vscode.window.showInformationMessage(`Exit code: ${t.exitStatus.code}`); } }); ```
(hide)
Hide the terminal panel if this terminal is currently showing.
Returns: void
Hide the terminal panel if this terminal is currently showing. **Returns:** `void`
(process-id)
The process ID of the shell process.
The process ID of the shell process.
(send-text text)
(send-text text should-execute?)
Send text to the terminal. The text is written to the stdin of the underlying pty process (shell) of the terminal.
Parameters:
text
: string
- The text to send.should-execute?
: boolean | undefined
- Indicates that the text being sent should be executed rather than just inserted in the terminal.
The character(s) added are \n
or \r\n
, depending on the platform. This defaults to true
.Returns: void
Send text to the terminal. The text is written to the stdin of the underlying pty process (shell) of the terminal. **Parameters:** - `text`: `string` - The text to send. - `should-execute?`: `boolean | undefined` - Indicates that the text being sent should be executed rather than just inserted in the terminal. The character(s) added are `\n` or `\r\n`, depending on the platform. This defaults to `true`. **Returns:** `void`
(show)
(show preserve-focus?)
Show the terminal panel and reveal this terminal in the UI.
Parameters:
preserve-focus?
: boolean | undefined
- When true
the terminal will not take focus.Returns: void
Show the terminal panel and reveal this terminal in the UI. **Parameters:** - `preserve-focus?`: `boolean | undefined` - When `true` the terminal will not take focus. **Returns:** `void`
(state)
The current state of the {@link Terminal }.
The current state of the {@link Terminal }.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close