mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-03 23:27:59 +00:00
Fix documentation for use_system_clipboard (#8635)
Release Notes: - Fixed documentation for vim.use_system_clipboard
This commit is contained in:
parent
5523a510c5
commit
242f032d74
1 changed files with 4 additions and 1 deletions
|
@ -623,12 +623,15 @@ impl Settings for VimModeSetting {
|
|||
}
|
||||
}
|
||||
|
||||
/// Controls the soft-wrapping behavior in the editor.
|
||||
/// Controls when to use system clipboard.
|
||||
#[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, JsonSchema)]
|
||||
#[serde(rename_all = "snake_case")]
|
||||
pub enum UseSystemClipboard {
|
||||
/// Don't use system clipboard.
|
||||
Never,
|
||||
/// Use system clipboard.
|
||||
Always,
|
||||
/// Use system clipboard for yank operations.
|
||||
OnYank,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue