diff --git a/src/config/Config.zig b/src/config/Config.zig index 8a0de7c4e..b9bac03e0 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -1067,11 +1067,6 @@ pub fn default(alloc_gpa: Allocator) Allocator.Error!Config { .{ .key = .v, .mods = mods }, .{ .paste_from_clipboard = {} }, ); - try result.keybind.set.put( - alloc, - .{ .key = .insert, .mods = .{ .shift = true } }, - .{ .paste_from_selection = {} }, - ); } // Fonts @@ -1265,6 +1260,13 @@ pub fn default(alloc_gpa: Allocator) Allocator.Error!Config { .{ .key = .a, .mods = .{ .shift = true, .ctrl = true } }, .{ .select_all = {} }, ); + + // Selection clipboard paste + try result.keybind.set.put( + alloc, + .{ .key = .insert, .mods = .{ .shift = true } }, + .{ .paste_from_selection = {} }, + ); } { // Cmd+N for goto tab N