# ClipboardCommand

`import { ClipboardCommand } from "destack:input/binding";`

Clipboard command kind.

```ds title="ClipboardCommand"
export enum ClipboardCommand {
    Copy = 1,
    Cut = 2,
    Paste = 3,
}
```

[language/library/src/input/binding/text.ds:197:204](https://github.com/destack-sh/destack/blob/main/language/library/src/input/binding/text.ds#L197-L204)

## Variants

### `Copy = 1`

Copy the current selection.

### `Cut = 2`

Cut the current selection.

### `Paste = 3`

Paste from the clipboard.
