fuzzyy
fuzzyy copied to clipboard
A vim9 fuzzy finder plugin with minimal dependency and mordern UI
Is there any way to use the fuzzy finder to filter arbitrary data? (e.g. by piping in commit history from Git) Got the idea from fzf.vim, which uses `fzf` to...
Would be nice to have a function that searches the user's command history. It looks like there is an option to search available commands, but not the command history.
Deafault config contains in autoload/ignore_tree/ignore_tree.vim. And can be customized by editing g:fuzzyy_custom_ignore: Example: ```vim let g:fuzzyy_custom_ignore = { \ 'dir': ['.git', '.hg', '.svn', '.rebar', '.eunit'], \ 'file': ['*.beam', '*.so', '*.exe',...
Latest vim build has introduced an issue when using this plugin: VIM - Vi IMproved 9.1 (2024 Jan 02, compiled Aug 8 2024 08:44:38) Included patches: 1-664 How to replicate:...
It would be nice if there was an option to list buffers by most recent access instead of name.
It should close https://github.com/Donaldttt/fuzzyy/issues/38. It also includes changes in https://github.com/Donaldttt/fuzzyy/pull/41
I was thinking to a couple of improvements for this tool: 1. Take into account of the value of wildignore in the search patterns. Many user may have defined some...