diff --git a/src/cmd/edit.rs b/src/cmd/edit.rs index 075f6c0..0f37165 100644 --- a/src/cmd/edit.rs +++ b/src/cmd/edit.rs @@ -46,9 +46,9 @@ impl Edit { Fzf::new()? .args([ // Search mode - "--scheme=path", + "--exact", // Search result - "--tiebreak=end,chunk,index", + "--no-sort", // Interface "--bind=\ btab:up,\ diff --git a/src/cmd/query.rs b/src/cmd/query.rs index b846ffe..21ae197 100644 --- a/src/cmd/query.rs +++ b/src/cmd/query.rs @@ -80,9 +80,9 @@ impl Query { } else { fzf.args([ // Search mode - "--scheme=path", + "--exact", // Search result - "--tiebreak=end,chunk,index", + "--no-sort", // Interface "--bind=ctrl-z:ignore,btab:up,tab:down", "--cycle",