@@ -3,18 +3,32 @@ local config = {
33 -- following letters on them so you can use that letter to select the window
44 selection_chars = ' FJDKSLA;CMRUEIWOQP' ,
55
6- -- You can change the display string in status bar.
7- -- It supports '%' printf style. Such as `return char .. ': %f'` to display
8- -- buffer filepath. See :h 'stl' for details.
9- selection_display = function (char , windowid )
10- return ' %=' .. char .. ' %='
11- end ,
12-
13- -- whether you want to use winbar instead of the statusline
14- -- "always" means to always use winbar,
15- -- "never" means to never use winbar
16- -- "smart" means to use winbar if cmdheight=0 and statusline if cmdheight > 0
17- use_winbar = ' never' , -- "always" | "never" | "smart"
6+ -- This section contains picker specific configurations
7+ picker_config = {
8+ statusline_winbar_picker = {
9+ -- You can change the display string in status bar.
10+ -- It supports '%' printf style. Such as `return char .. ': %f'` to display
11+ -- buffer file path. See :h 'stl' for details.
12+ selection_display = function (char , windowid )
13+ return ' %=' .. char .. ' %='
14+ end ,
15+
16+ -- whether you want to use winbar instead of the statusline
17+ -- "always" means to always use winbar,
18+ -- "never" means to never use winbar
19+ -- "smart" means to use winbar if cmdheight=0 and statusline if cmdheight > 0
20+ use_winbar = ' never' , -- "always" | "never" | "smart"
21+ },
22+
23+ floating_window_picker = {
24+ -- window picker plugin provides bunch of big letter fonts
25+ -- fonts will be lazy loaded as they are being requested
26+ -- additionally, user can pass in a table of fonts in to font
27+ -- property to use instead
28+
29+ font = ' ansi-shadow' , -- ansi-shadow |
30+ },
31+ },
1832
1933 -- whether to show 'Pick window:' prompt
2034 show_prompt = true ,
0 commit comments