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:
Mitchell Hashimoto
2023-07-23 15:59:45 -07:00
committed by GitHub

View File

@ -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(