mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
Merge pull request #214 from mitchellh/mrn/gtk-default-keybinding-split
config: change default keybind for goto-split on non-Darwin
This commit is contained in:
@ -446,12 +446,12 @@ pub const Config = struct {
|
|||||||
);
|
);
|
||||||
try result.keybind.set.put(
|
try result.keybind.set.put(
|
||||||
alloc,
|
alloc,
|
||||||
.{ .key = .left_bracket, .mods = .{ .ctrl = true } },
|
.{ .key = .left_bracket, .mods = .{ .ctrl = true, .super = true } },
|
||||||
.{ .goto_split = .previous },
|
.{ .goto_split = .previous },
|
||||||
);
|
);
|
||||||
try result.keybind.set.put(
|
try result.keybind.set.put(
|
||||||
alloc,
|
alloc,
|
||||||
.{ .key = .right_bracket, .mods = .{ .ctrl = true } },
|
.{ .key = .right_bracket, .mods = .{ .ctrl = true, .super = true } },
|
||||||
.{ .goto_split = .next },
|
.{ .goto_split = .next },
|
||||||
);
|
);
|
||||||
try result.keybind.set.put(
|
try result.keybind.set.put(
|
||||||
|
Reference in New Issue
Block a user