summaryrefslogtreecommitdiff
path: root/src/Surface.zig
diff options
context:
space:
mode:
authorJeffrey C. Ollie <jeff@ocjtech.us>2025-07-06 13:12:00 -0500
committerJeffrey C. Ollie <jeff@ocjtech.us>2025-07-06 13:12:00 -0500
commita23b5328a5e230fd29cb53a0f468f7eca5149c3d (patch)
tree09bf29acef0a76348ac63e3a60e104ca7d616013 /src/Surface.zig
parent3cf56b8af3d5766210bc25202d0f82e15ce0ce6d (diff)
keybind: rename copy_title to copy_title_to_clipboard
Co-authored-by: Jon Parise <jon@indelible.org>
Diffstat (limited to 'src/Surface.zig')
-rw-r--r--src/Surface.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Surface.zig b/src/Surface.zig
index faba60ced..30235f26f 100644
--- a/src/Surface.zig
+++ b/src/Surface.zig
@@ -4443,7 +4443,7 @@ pub fn performBindingAction(self: *Surface, action: input.Binding.Action) !bool
return false;
},
- .copy_title => {
+ .copy_title_to_clipboard => {
const title = self.rt_surface.getTitle() orelse return false;
self.rt_surface.setClipboardString(title, .standard, false) catch |err| {