fzf: disable sorting of results

This commit is contained in:
Ajeet D'Souza 2023-01-16 01:16:51 +05:30
parent 2c2286cea2
commit b7d337cbcd
2 changed files with 4 additions and 4 deletions

View File

@ -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,\

View File

@ -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",