diff options
| author | Luke Kershaw <35707277+l-kershaw@users.noreply.github.com> | 2022-01-05 22:42:29 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-05 22:42:29 +0000 |
| commit | f285599440fcdbf97a7f44d120d403c80316f576 (patch) | |
| tree | 1f957e086e1f07516c234ecd3e49657ab664744f /lua/telescope/config.lua | |
| parent | 749ce3b8ca1989ce5a7f9a062b7c21f38f1a6d83 (diff) | |
feat: multiselect icon (#1572)
* feat: add `multi_icon` option to pickers and corresponding highlight
* feat: allow `multi_icon` to be any length
* fix: adjust `selection_caret` highlighting
Diffstat (limited to 'lua/telescope/config.lua')
| -rw-r--r-- | lua/telescope/config.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lua/telescope/config.lua b/lua/telescope/config.lua index 7bd07dc..043ac8a 100644 --- a/lua/telescope/config.lua +++ b/lua/telescope/config.lua @@ -246,6 +246,18 @@ append( ) append( + "multi_icon", + "+", + [[ + Symbol to add in front of a multi-selected result entry. + Replaces final character of |telescope.defaults.selection_caret| and + |telescope.defaults.entry_prefix| as appropriate. + To have no icon, set to the empty string. + + Default: '+']] +) + +append( "initial_mode", "insert", [[ |
