config: rename ClipboardRequest to ClipboardAccess

This commit is contained in:
Gregory Anders
2023-11-10 16:34:04 -06:00
parent 9d3385703d
commit 2a64180ebd
2 changed files with 5 additions and 5 deletions

View File

@@ -458,8 +458,8 @@ keybind: Keybinds = .{},
/// the system clipboard (OSC 52, for googling). The default is to
/// allow clipboard reading after prompting the user and allow writing
/// unconditionally.
@"clipboard-read": ClipboardRequest = .ask,
@"clipboard-write": ClipboardRequest = .allow,
@"clipboard-read": ClipboardAccess = .ask,
@"clipboard-write": ClipboardAccess = .allow,
/// Trims trailing whitespace on data that is copied to the clipboard.
/// This does not affect data sent to the clipboard via "clipboard-write".
@@ -2307,7 +2307,7 @@ pub const MouseShiftCapture = enum {
};
/// How to treat requests to write to or read from the clipboard
pub const ClipboardRequest = enum {
pub const ClipboardAccess = enum {
allow,
deny,
ask,