Skip to content

Commit 1f0718a

Browse files
committed
Regenerate vim docs from README
1 parent f426ab1 commit 1f0718a

File tree

1 file changed

+38
-15
lines changed

1 file changed

+38
-15
lines changed

doc/fuzzyy.txt

+38-15
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,23 @@ CONTENTS *fuzzyy-contents*
1717
1.7.1. g:fuzzyy_enable_mappings............|fuzzyy-g:fuzzyy_enable_mappings|
1818
1.7.2. g:fuzzyy_devicons..........................|fuzzyy-g:fuzzyy_devicons|
1919
1.7.3. g:fuzzyy_dropdown..........................|fuzzyy-g:fuzzyy_dropdown|
20-
1.7.4. g:fuzzyy_reuse_windows................|fuzzyy-g:fuzzyy_reuse_windows|
21-
1.7.5. g:fuzzyy_respect_gitignore........|fuzzyy-g:fuzzyy_respect_gitignore|
22-
1.7.6. g:fuzzyy_include_hidden..............|fuzzyy-g:fuzzyy_include_hidden|
23-
1.7.7. g:fuzzyy_follow_symlinks............|fuzzyy-g:fuzzyy_follow_symlinks|
24-
1.7.8. g:fuzzyy_root_patterns................|fuzzyy-g:fuzzyy_root_patterns|
25-
1.7.9. g:fuzzyy_exclude_file..................|fuzzyy-g:fuzzyy_exclude_file|
26-
1.7.10. g:fuzzyy_exclude_dir...................|fuzzyy-g:fuzzyy_exclude_dir|
27-
1.7.11. g:fuzzyy_ripgrep_options...........|fuzzyy-g:fuzzyy_ripgrep_options|
28-
1.7.12. g:fuzzyy_devicons_glyph_func...|fuzzyy-g:fuzzyy_devicons_glyph_func|
29-
1.7.13. g:fuzzyy_devicons_color_func...|fuzzyy-g:fuzzyy_devicons_color_func|
30-
1.7.14. g:fuzzyy_keymaps...........................|fuzzyy-g:fuzzyy_keymaps|
31-
1.7.15. g:fuzzyy_buffers_exclude...........|fuzzyy-g:fuzzyy_buffers_exclude|
32-
1.7.16. g:fuzzyy_buffers_keymap.............|fuzzyy-g:fuzzyy_buffers_keymap|
33-
1.7.17. g:fuzzyy_window_layout...............|fuzzyy-g:fuzzyy_window_layout|
34-
1.7.18. g:fuzzyy_async_step.....................|fuzzyy-g:fuzzyy_async_step|
20+
1.7.4. g:fuzzyy_borderchars....................|fuzzyy-g:fuzzyy_borderchars|
21+
1.7.5. g:fuzzyy_reuse_windows................|fuzzyy-g:fuzzyy_reuse_windows|
22+
1.7.6. g:fuzzyy_respect_gitignore........|fuzzyy-g:fuzzyy_respect_gitignore|
23+
1.7.7. g:fuzzyy_include_hidden..............|fuzzyy-g:fuzzyy_include_hidden|
24+
1.7.8. g:fuzzyy_follow_symlinks............|fuzzyy-g:fuzzyy_follow_symlinks|
25+
1.7.9. g:fuzzyy_root_patterns................|fuzzyy-g:fuzzyy_root_patterns|
26+
1.7.10. g:fuzzyy_exclude_file.................|fuzzyy-g:fuzzyy_exclude_file|
27+
1.7.11. g:fuzzyy_exclude_dir...................|fuzzyy-g:fuzzyy_exclude_dir|
28+
1.7.12. g:fuzzyy_ripgrep_options...........|fuzzyy-g:fuzzyy_ripgrep_options|
29+
1.7.13. g:fuzzyy_devicons_color_table.|fuzzyy-g:fuzzyy_devicons_color_table|
30+
1.7.14. g:fuzzyy_devicons_glyph_func...|fuzzyy-g:fuzzyy_devicons_glyph_func|
31+
1.7.15. g:fuzzyy_devicons_color_func...|fuzzyy-g:fuzzyy_devicons_color_func|
32+
1.7.16. g:fuzzyy_keymaps...........................|fuzzyy-g:fuzzyy_keymaps|
33+
1.7.17. g:fuzzyy_buffers_exclude...........|fuzzyy-g:fuzzyy_buffers_exclude|
34+
1.7.18. g:fuzzyy_buffers_keymap.............|fuzzyy-g:fuzzyy_buffers_keymap|
35+
1.7.19. g:fuzzyy_window_layout...............|fuzzyy-g:fuzzyy_window_layout|
36+
1.7.20. g:fuzzyy_async_step.....................|fuzzyy-g:fuzzyy_async_step|
3537
1.8. Syntax highlighting..........................|fuzzyy-syntax_highlighting|
3638

3739
==============================================================================
@@ -204,6 +206,13 @@ Enable dropdown theme (prompt at top rather than bottom). Default 0
204206
let g:fuzzyy_dropdown = 0
205207
<
206208

209+
G:FUZZYY_BORDERCHARS *fuzzyy-g:fuzzyy_borderchars*
210+
211+
Set the borderchars of popup windows. Must be a list of 8 characters.
212+
>
213+
let g:fuzzyy_borderchars = ['─', '│', '─', '│', '╭', '╮', '╯', '╰']
214+
<
215+
207216
G:FUZZYY_REUSE_WINDOWS *fuzzyy-g:fuzzyy_reuse_windows*
208217

209218
Fuzzyy avoids opening files in windows containing special buffers, like buffers
@@ -315,6 +324,20 @@ Example usage
315324
This option can also be set specifically for FuzzyFiles and/or FuzzyGrep using
316325
`g:fuzzyy_files_ripgrep_options` and `g:fuzzyy_grep_ripgrep_options`
317326

327+
G:FUZZYY_DEVICONS_COLOR_TABLE *fuzzyy-g:fuzzyy_devicons_color_table*
328+
329+
Add custom mappings for colorizing devicon glyphs. A dictionary of filename
330+
patterns and colors. Colors must be either color names in Vim's `v:colornames`
331+
dict or hex colors in `#rrggbb` format. Default {}
332+
>
333+
let g:fuzzyy_devicons_color_table = {}
334+
<
335+
336+
Example usage
337+
>
338+
let g:fuzzyy_devicons_color_table = { '*.vala': 'mediumpurple', '*.jl': '#9558B2' }
339+
<
340+
318341
G:FUZZYY_DEVICONS_GLYPH_FUNC *fuzzyy-g:fuzzyy_devicons_glyph_func*
319342

320343
Specify a custom function for obtaining devicon glyphs from file names or paths.

0 commit comments

Comments
 (0)