Skip to content

Commit

Permalink
Switch default key bindings to include on and offscreen contents
Browse files Browse the repository at this point in the history
Previous discussions:

 - #3652
 - #3496
 - #4911
 - #4390
 - #2363 (comment)
 - #189 (comment)
 - #2040
  • Loading branch information
MadLittleMods committed Jan 22, 2025
1 parent 6265adf commit a8d2185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/Config.zig
Original file line number Diff line number Diff line change
@@ -2370,13 +2370,13 @@ pub fn default(alloc_gpa: Allocator) Allocator.Error!Config {
try result.keybind.set.put(
alloc,
.{ .key = .{ .translated = .j }, .mods = inputpkg.ctrlOrSuper(.{ .shift = true }) },
.{ .write_scrollback_file = .paste },
.{ .write_screen_file = .paste },
);

try result.keybind.set.put(
alloc,
.{ .key = .{ .translated = .j }, .mods = inputpkg.ctrlOrSuper(.{ .shift = true, .alt = true }) },
.{ .write_scrollback_file = .open },
.{ .write_screen_file = .open },
);

// Expand Selection

0 comments on commit a8d2185

Please sign in to comment.