mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-21 03:06:15 +03:00
338 lines
12 KiB
Zig
338 lines
12 KiB
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
const args = @import("args.zig");
|
|
const Action = @import("action.zig").Action;
|
|
const Arena = std.heap.ArenaAllocator;
|
|
const Allocator = std.mem.Allocator;
|
|
const configpkg = @import("../config.zig");
|
|
const Config = configpkg.Config;
|
|
const vaxis = @import("vaxis");
|
|
const input = @import("../input.zig");
|
|
const tui = @import("tui.zig");
|
|
const Binding = input.Binding;
|
|
|
|
pub const Options = struct {
|
|
/// If `true`, print out the default keybinds instead of the ones configured
|
|
/// in the config file.
|
|
default: bool = false,
|
|
|
|
/// If `true`, print out documentation about the action associated with the
|
|
/// keybinds.
|
|
docs: bool = false,
|
|
|
|
/// If `true`, print without formatting even if printing to a tty
|
|
plain: bool = false,
|
|
|
|
pub fn deinit(self: Options) void {
|
|
_ = self;
|
|
}
|
|
|
|
/// Enables `-h` and `--help` to work.
|
|
pub fn help(self: Options) !void {
|
|
_ = self;
|
|
return Action.help_error;
|
|
}
|
|
};
|
|
|
|
/// The `list-keybinds` command is used to list all the available keybinds for
|
|
/// Ghostty.
|
|
///
|
|
/// When executed without any arguments this will list the current keybinds
|
|
/// loaded by the config file. If no config file is found or there aren't any
|
|
/// changes to the keybinds it will print out the default ones configured for
|
|
/// Ghostty
|
|
///
|
|
/// Flags:
|
|
///
|
|
/// * `--default`: will print out all the default keybinds
|
|
///
|
|
/// * `--docs`: currently does nothing, intended to print out documentation
|
|
/// about the action associated with the keybinds
|
|
///
|
|
/// * `--plain`: will disable formatting and make the output more
|
|
/// friendly for Unix tooling. This is default when not printing to a tty.
|
|
pub fn run(alloc: Allocator) !u8 {
|
|
var opts: Options = .{};
|
|
defer opts.deinit();
|
|
|
|
{
|
|
var iter = try args.argsIterator(alloc);
|
|
defer iter.deinit();
|
|
try args.parse(Options, alloc, &opts, &iter);
|
|
}
|
|
|
|
var config = if (opts.default) try Config.default(alloc) else try Config.load(alloc);
|
|
defer config.deinit();
|
|
|
|
const stdout = std.io.getStdOut();
|
|
|
|
// Despite being under the posix namespace, this also works on Windows as of zig 0.13.0
|
|
if (tui.can_pretty_print and !opts.plain and std.posix.isatty(stdout.handle)) {
|
|
var arena = std.heap.ArenaAllocator.init(alloc);
|
|
defer arena.deinit();
|
|
return prettyPrint(arena.allocator(), config.keybind);
|
|
} else {
|
|
try config.keybind.formatEntryDocs(
|
|
configpkg.entryFormatter("keybind", stdout.writer()),
|
|
opts.docs,
|
|
);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
const TriggerList = std.SinglyLinkedList(Binding.Trigger);
|
|
|
|
const ChordBinding = struct {
|
|
triggers: TriggerList,
|
|
action: Binding.Action,
|
|
|
|
// Order keybinds based on various properties
|
|
// 1. Longest chord sequence
|
|
// 2. Most active modifiers
|
|
// 3. Alphabetically by active modifiers
|
|
// 4. Trigger key order
|
|
// These properties propagate through chorded keypresses
|
|
//
|
|
// Adapted from Binding.lessThan
|
|
pub fn lessThan(_: void, lhs: ChordBinding, rhs: ChordBinding) bool {
|
|
const lhs_len = lhs.triggers.len();
|
|
const rhs_len = rhs.triggers.len();
|
|
|
|
std.debug.assert(lhs_len != 0);
|
|
std.debug.assert(rhs_len != 0);
|
|
|
|
if (lhs_len != rhs_len) {
|
|
return lhs_len > rhs_len;
|
|
}
|
|
|
|
const lhs_count: usize = blk: {
|
|
var count: usize = 0;
|
|
var maybe_trigger = lhs.triggers.first;
|
|
while (maybe_trigger) |trigger| : (maybe_trigger = trigger.next) {
|
|
if (trigger.data.mods.super) count += 1;
|
|
if (trigger.data.mods.ctrl) count += 1;
|
|
if (trigger.data.mods.shift) count += 1;
|
|
if (trigger.data.mods.alt) count += 1;
|
|
}
|
|
break :blk count;
|
|
};
|
|
const rhs_count: usize = blk: {
|
|
var count: usize = 0;
|
|
var maybe_trigger = rhs.triggers.first;
|
|
while (maybe_trigger) |trigger| : (maybe_trigger = trigger.next) {
|
|
if (trigger.data.mods.super) count += 1;
|
|
if (trigger.data.mods.ctrl) count += 1;
|
|
if (trigger.data.mods.shift) count += 1;
|
|
if (trigger.data.mods.alt) count += 1;
|
|
}
|
|
|
|
break :blk count;
|
|
};
|
|
|
|
if (lhs_count != rhs_count)
|
|
return lhs_count > rhs_count;
|
|
|
|
{
|
|
var l_trigger = lhs.triggers.first;
|
|
var r_trigger = rhs.triggers.first;
|
|
while (l_trigger != null and r_trigger != null) {
|
|
const l_int = l_trigger.?.data.mods.int();
|
|
const r_int = r_trigger.?.data.mods.int();
|
|
|
|
if (l_int != r_int) {
|
|
return l_int > r_int;
|
|
}
|
|
|
|
l_trigger = l_trigger.?.next;
|
|
r_trigger = r_trigger.?.next;
|
|
}
|
|
}
|
|
|
|
var l_trigger = lhs.triggers.first;
|
|
var r_trigger = rhs.triggers.first;
|
|
|
|
while (l_trigger != null and r_trigger != null) {
|
|
const lhs_key: c_int = blk: {
|
|
switch (l_trigger.?.data.key) {
|
|
.physical => |key| break :blk @intFromEnum(key),
|
|
.unicode => |key| break :blk @intCast(key),
|
|
}
|
|
};
|
|
const rhs_key: c_int = blk: {
|
|
switch (r_trigger.?.data.key) {
|
|
.physical => |key| break :blk @intFromEnum(key),
|
|
.unicode => |key| break :blk @intCast(key),
|
|
}
|
|
};
|
|
|
|
l_trigger = l_trigger.?.next;
|
|
r_trigger = r_trigger.?.next;
|
|
|
|
if (l_trigger == null or r_trigger == null) {
|
|
return lhs_key < rhs_key;
|
|
}
|
|
|
|
if (lhs_key != rhs_key) {
|
|
return lhs_key < rhs_key;
|
|
}
|
|
}
|
|
|
|
// The previous loop will always return something on its final iteration so we cannot
|
|
// reach this point
|
|
unreachable;
|
|
}
|
|
};
|
|
|
|
fn prettyPrint(alloc: Allocator, keybinds: Config.Keybinds) !u8 {
|
|
// Set up vaxis
|
|
var tty = try vaxis.Tty.init();
|
|
defer tty.deinit();
|
|
var vx = try vaxis.init(alloc, .{});
|
|
defer vx.deinit(alloc, tty.anyWriter());
|
|
|
|
// We know we are ghostty, so let's enable mode 2027. Vaxis normally does this but you need an
|
|
// event loop to auto-enable it.
|
|
vx.caps.unicode = .unicode;
|
|
try tty.anyWriter().writeAll(vaxis.ctlseqs.unicode_set);
|
|
defer tty.anyWriter().writeAll(vaxis.ctlseqs.unicode_reset) catch {};
|
|
|
|
var buf_writer = tty.bufferedWriter();
|
|
const writer = buf_writer.writer().any();
|
|
|
|
const winsize: vaxis.Winsize = switch (builtin.os.tag) {
|
|
// We use some default, it doesn't really matter for what
|
|
// we're doing because we don't do any wrapping.
|
|
.windows => .{
|
|
.rows = 24,
|
|
.cols = 120,
|
|
.x_pixel = 1024,
|
|
.y_pixel = 768,
|
|
},
|
|
|
|
else => try vaxis.Tty.getWinsize(tty.fd),
|
|
};
|
|
try vx.resize(alloc, tty.anyWriter(), winsize);
|
|
|
|
const win = vx.window();
|
|
|
|
// Generate a list of bindings, recursively traversing chorded keybindings
|
|
var iter = keybinds.set.bindings.iterator();
|
|
const bindings, const widest_chord = try iterateBindings(alloc, &iter, &win);
|
|
|
|
std.mem.sort(ChordBinding, bindings, {}, ChordBinding.lessThan);
|
|
|
|
// Set up styles for each modifier
|
|
const super_style: vaxis.Style = .{ .fg = .{ .index = 1 } };
|
|
const ctrl_style: vaxis.Style = .{ .fg = .{ .index = 2 } };
|
|
const alt_style: vaxis.Style = .{ .fg = .{ .index = 3 } };
|
|
const shift_style: vaxis.Style = .{ .fg = .{ .index = 4 } };
|
|
|
|
// Print the list
|
|
for (bindings) |bind| {
|
|
win.clear();
|
|
|
|
var result: vaxis.Window.PrintResult = .{ .col = 0, .row = 0, .overflow = false };
|
|
var maybe_trigger = bind.triggers.first;
|
|
while (maybe_trigger) |trigger| : (maybe_trigger = trigger.next) {
|
|
if (trigger.data.mods.super) {
|
|
result = win.printSegment(.{ .text = "super", .style = super_style }, .{ .col_offset = result.col });
|
|
result = win.printSegment(.{ .text = " + " }, .{ .col_offset = result.col });
|
|
}
|
|
if (trigger.data.mods.ctrl) {
|
|
result = win.printSegment(.{ .text = "ctrl ", .style = ctrl_style }, .{ .col_offset = result.col });
|
|
result = win.printSegment(.{ .text = " + " }, .{ .col_offset = result.col });
|
|
}
|
|
if (trigger.data.mods.alt) {
|
|
result = win.printSegment(.{ .text = "alt ", .style = alt_style }, .{ .col_offset = result.col });
|
|
result = win.printSegment(.{ .text = " + " }, .{ .col_offset = result.col });
|
|
}
|
|
if (trigger.data.mods.shift) {
|
|
result = win.printSegment(.{ .text = "shift", .style = shift_style }, .{ .col_offset = result.col });
|
|
result = win.printSegment(.{ .text = " + " }, .{ .col_offset = result.col });
|
|
}
|
|
const key = switch (trigger.data.key) {
|
|
.physical => |k| try std.fmt.allocPrint(alloc, "{s}", .{@tagName(k)}),
|
|
.unicode => |c| try std.fmt.allocPrint(alloc, "{u}", .{c}),
|
|
};
|
|
result = win.printSegment(.{ .text = key }, .{ .col_offset = result.col });
|
|
|
|
// Print a separator between chorded keys
|
|
if (trigger.next != null) {
|
|
result = win.printSegment(.{ .text = " > ", .style = .{ .bold = true, .fg = .{ .index = 6 } } }, .{ .col_offset = result.col });
|
|
}
|
|
}
|
|
|
|
const action = try std.fmt.allocPrint(alloc, "{}", .{bind.action});
|
|
// If our action has an argument, we print the argument in a different color
|
|
if (std.mem.indexOfScalar(u8, action, ':')) |idx| {
|
|
_ = win.print(&.{
|
|
.{ .text = action[0..idx] },
|
|
.{ .text = action[idx .. idx + 1], .style = .{ .dim = true } },
|
|
.{ .text = action[idx + 1 ..], .style = .{ .fg = .{ .index = 5 } } },
|
|
}, .{ .col_offset = widest_chord + 3 });
|
|
} else {
|
|
_ = win.printSegment(.{ .text = action }, .{ .col_offset = widest_chord + 3 });
|
|
}
|
|
try vx.prettyPrint(writer);
|
|
}
|
|
try buf_writer.flush();
|
|
return 0;
|
|
}
|
|
|
|
fn iterateBindings(alloc: Allocator, iter: anytype, win: *const vaxis.Window) !struct { []ChordBinding, u16 } {
|
|
var widest_chord: u16 = 0;
|
|
var bindings = std.ArrayList(ChordBinding).init(alloc);
|
|
while (iter.next()) |bind| {
|
|
const width = blk: {
|
|
var buf = std.ArrayList(u8).init(alloc);
|
|
const t = bind.key_ptr.*;
|
|
|
|
if (t.mods.super) try std.fmt.format(buf.writer(), "super + ", .{});
|
|
if (t.mods.ctrl) try std.fmt.format(buf.writer(), "ctrl + ", .{});
|
|
if (t.mods.alt) try std.fmt.format(buf.writer(), "alt + ", .{});
|
|
if (t.mods.shift) try std.fmt.format(buf.writer(), "shift + ", .{});
|
|
|
|
switch (t.key) {
|
|
.physical => |k| try std.fmt.format(buf.writer(), "{s}", .{@tagName(k)}),
|
|
.unicode => |c| try std.fmt.format(buf.writer(), "{u}", .{c}),
|
|
}
|
|
|
|
break :blk win.gwidth(buf.items);
|
|
};
|
|
|
|
switch (bind.value_ptr.*) {
|
|
.leader => |leader| {
|
|
|
|
// Recursively iterate on the set of bindings for this leader key
|
|
var n_iter = leader.bindings.iterator();
|
|
const sub_bindings, const max_width = try iterateBindings(alloc, &n_iter, win);
|
|
|
|
// Prepend the current keybind onto the list of sub-binds
|
|
for (sub_bindings) |*nb| {
|
|
const prepend_node = try alloc.create(TriggerList.Node);
|
|
prepend_node.* = TriggerList.Node{ .data = bind.key_ptr.* };
|
|
nb.triggers.prepend(prepend_node);
|
|
}
|
|
|
|
// Add the longest sub-bind width to the current bind width along with a padding
|
|
// of 5 for the ' > ' spacer
|
|
widest_chord = @max(widest_chord, width + max_width + 5);
|
|
try bindings.appendSlice(sub_bindings);
|
|
},
|
|
.leaf => |leaf| {
|
|
const node = try alloc.create(TriggerList.Node);
|
|
node.* = TriggerList.Node{ .data = bind.key_ptr.* };
|
|
const triggers = TriggerList{
|
|
.first = node,
|
|
};
|
|
|
|
widest_chord = @max(widest_chord, width);
|
|
try bindings.append(.{ .triggers = triggers, .action = leaf.action });
|
|
},
|
|
}
|
|
}
|
|
|
|
return .{ try bindings.toOwnedSlice(), widest_chord };
|
|
}
|