Liking cljdoc? Tell your friends :D

dots.vscode.output-channel

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}.
raw docstring

appendcljs

(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`
sourceraw docstring

append-linecljs

(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`
sourceraw docstring

clearcljs

(clear output-channel)

Removes all output from the channel.

Returns: void

Removes all output from the channel.

**Returns:** `void`
sourceraw docstring

disposecljs

(dispose output-channel)

Dispose and free associated resources.

Returns: void

Dispose and free associated resources.

**Returns:** `void`
sourceraw docstring

hidecljs

(hide output-channel)

Hide this channel from the UI.

Returns: void

Hide this channel from the UI.

**Returns:** `void`
sourceraw docstring

namecljs

(name output-channel)

The human-readable name of this output channel.

The human-readable name of this output channel.
sourceraw docstring

replacecljs

(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`
sourceraw docstring

showcljs

(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`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close