Liking cljdoc? Tell your friends :D
ClojureScript only.

dots.vscode.file-will-delete-event

An event that is fired when files are going to be deleted.

To make modifications to the workspace before the files are deleted, call the {@link FileWillCreateEvent.waitUntil waitUntil}-function with a thenable that resolves to a {@link WorkspaceEdit workspace edit}.

An event that is fired when files are going to be deleted.

To make modifications to the workspace before the files are deleted,
call the {@link FileWillCreateEvent.waitUntil `waitUntil`}-function with a
thenable that resolves to a {@link WorkspaceEdit workspace edit}.
raw docstring

filescljs

(files file-will-delete-event)

The files that are going to be deleted.

Returns: readonly Uri[]

The files that are going to be deleted.

**Returns:** `readonly Uri[]`
sourceraw docstring

tokencljs

(token file-will-delete-event)

A cancellation token.

Returns: CancellationToken

A cancellation token.

**Returns:** `CancellationToken`
sourceraw docstring

wait-untilcljs

(wait-until file-will-delete-event thenable)

Allows to pause the event and to apply a {@link WorkspaceEdit workspace edit}.

Note: This function can only be called during event dispatch and not in an asynchronous manner:

workspace.onWillCreateFiles(event => {
	// async, will *throw* an error
	setTimeout(() => event.waitUntil(promise));

	// sync, OK
	event.waitUntil(promise);
})

Allows to pause the event until the provided thenable resolves.

Note: This function can only be called during event dispatch.

Parameters:

  • thenable: Thenable<any> - A thenable that delays saving.

Returns: void

Allows to pause the event and to apply a {@link WorkspaceEdit workspace edit}.

*Note:* This function can only be called during event dispatch and not
in an asynchronous manner:

```ts
workspace.onWillCreateFiles(event => {
	// async, will *throw* an error
	setTimeout(() => event.waitUntil(promise));

	// sync, OK
	event.waitUntil(promise);
})
```
Allows to pause the event until the provided thenable resolves.

*Note:* This function can only be called during event dispatch.

**Parameters:**
- `thenable`: `Thenable<any>` - A thenable that delays saving.

**Returns:** `void`
sourceraw docstring

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

× close