commit - 4fc826c2d403ff17d96ffca90f7fd96be3e7fc35
commit + c9f58cc425e8d08c91679f896b60cfb04aadd6b2
blob - bad45f03556fd23cc4349de080292e01fff0a3ee
blob + 51e23b80c84499b763e059f31091ee619f91cdaa
--- pmn/src/main.zig
+++ pmn/src/main.zig
fn fzf(init: std.process.Init, alloc: std.mem.Allocator, items: []const []const u8) !?[]u8 {
var child = try std.process.spawn(init.io, .{
- .argv = &.{ "fzf", "--print-query" },
+ .argv = &.{ "fzf", "--exact", "--print-query" },
.stdin = .pipe,
.stdout = .pipe,
.stderr = .inherit,