Sets sane default for copy-to-right-click

This commit is contained in:
LimaTheLime
2025-02-22 20:36:42 +00:00
parent 00f4e6bae0
commit cc55ffa26d

View File

@ -1513,8 +1513,8 @@ keybind: Keybinds = .{},
},
@"copy-on-right-click": CopyOnMouseAction = switch (builtin.os.tag) {
.linux => .true,
.macos => .true,
.linux => .false,
.macos => .false,
else => .false,
},