fzf: disable sorting of results (#515)

This commit is contained in:
Ajeet D'Souza 2023-01-16 01:17:41 +05:30 committed by GitHub
parent 2c2286cea2
commit 59d80a7b60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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",