Switch default key bindings to include on and offscreen contents
Previous discussions: - https://github.com/ghostty-org/ghostty/discussions/3652 - https://github.com/ghostty-org/ghostty/issues/3496 - https://github.com/ghostty-org/ghostty/discussions/4911 - https://github.com/ghostty-org/ghostty/discussions/4390 - https://github.com/ghostty-org/ghostty/discussions/2363#discussioncomment-11735957 - https://github.com/ghostty-org/ghostty/issues/189#issuecomment-2564719973 - https://github.com/ghostty-org/ghostty/pull/2040pull/5285/head
parent
6265adfcd4
commit
a8d2185611
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue