1
1
mirror of https://github.com/wez/wezterm.git synced 2025-01-06 13:59:33 +03:00
wezterm/docs/config/lua/keyassignment/Copy.md
Wez Furlong 6479df63b9
removed deprecated Copy, Paste, PastePrimarySelection actions
These have been deprecated since early 2021; time to remove them
and simplify a little.
2022-12-22 07:31:18 -07:00

26 lines
457 B
Markdown

# Copy
Copy the selection to the clipboard.
*since: 20210203-095643-70a364eb*
This action is considered to be deprecated and will be removed in
a future release; please use [CopyTo](CopyTo.md) instead.
*Since: nightly builds only*
This action has been removed. Please use [CopyTo](CopyTo.md) instead.
## Example
```lua
local wezterm = require 'wezterm'
return {
keys = {
{ key = 'C', mods = 'CTRL', action = wezterm.action.Copy },
},
}
```