An output channel is a container for readonly textual information.
To get an instance of an OutputChannel
use
{@link window.createOutputChannel createOutputChannel}.
An output channel is a container for readonly textual information. To get an instance of an `OutputChannel` use {@link window.createOutputChannel createOutputChannel}.
(append output-channel value)
Append the given value to the channel.
Parameters:
value
: string
- A string, falsy values will not be printed.Returns: void
Append the given value to the channel. **Parameters:** - `value`: `string` - A string, falsy values will not be printed. **Returns:** `void`
(append-line output-channel value)
Append the given value and a line feed character to the channel.
Parameters:
value
: string
- A string, falsy values will be printed.Returns: void
Append the given value and a line feed character to the channel. **Parameters:** - `value`: `string` - A string, falsy values will be printed. **Returns:** `void`
(clear output-channel)
Removes all output from the channel.
Returns: void
Removes all output from the channel. **Returns:** `void`
(dispose output-channel)
Dispose and free associated resources.
Returns: void
Dispose and free associated resources. **Returns:** `void`
(hide output-channel)
Hide this channel from the UI.
Returns: void
Hide this channel from the UI. **Returns:** `void`
(name output-channel)
The human-readable name of this output channel.
Returns: string
The human-readable name of this output channel. **Returns:** `string`
(replace output-channel value)
Replaces all output from the channel with the given value.
Parameters:
value
: string
- A string, falsy values will not be printed.Returns: void
Replaces all output from the channel with the given value. **Parameters:** - `value`: `string` - A string, falsy values will not be printed. **Returns:** `void`
(show output-channel)
(show output-channel column)
(show output-channel preserve-focus?)
(show output-channel column preserve-focus?)
Reveal this channel in the UI.
Parameters:
column
: ViewColumn | undefined
- This argument is deprecated and will be ignored.preserve-focus?
: boolean | undefined
- When true
the channel will not take focus.Returns: void
Reveal this channel in the UI. **Parameters:** - `column`: `ViewColumn | undefined` - This argument is **deprecated** and will be ignored. - `preserve-focus?`: `boolean | undefined` - When `true` the channel will not take focus. **Returns:** `void`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close