diff options
| author | Julian Fricker <402357+TC72@users.noreply.github.com> | 2022-01-09 18:43:06 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-09 19:43:06 +0100 |
| commit | 5060f3f0ab33504e728a8673dc08679947c35ded (patch) | |
| tree | adc649dd91bb4131da32c3da647c8a81175470c4 /doc | |
| parent | e8ef88bfcbabde42b7a29e938dc5ebbdbb8b1c5f (diff) | |
feat: tiebreak config function (#1401)
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/telescope.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/telescope.txt b/doc/telescope.txt index ea3126c..9559767 100644 --- a/doc/telescope.txt +++ b/doc/telescope.txt @@ -74,6 +74,20 @@ telescope.setup({opts}) *telescope.setup()* - "descending" (default) - "ascending" + *telescope.defaults.tiebreak* + tiebreak: ~ + A function that determines how to break a tie when two entries have + the same score. + Having a function that always returns false would keep the entries in + the order they are found, so existing_entry before current_entry. + Vice versa always returning true would place the current_entry + before the existing_entry. + + Signature: function(current_entry, existing_entry, prompt) -> boolean + + Default: function that breaks the tie based on the length of the + entry's ordinal + *telescope.defaults.selection_strategy* selection_strategy: ~ Determines how the cursor acts after each sort iteration. |
