Files
helix/tests/query/highlights/zig/calls.zig
2026-06-20 14:49:53 +09:00

11 lines
234 B
Zig

const std = @import("std");
// ^ @keyword.control.import
pub fn main() void {
obj.doThing();
// ^ @function.method
helper(x);
// ^ @function
const y = obj.field;
// ^ @variable.other.member
}