{"id":17041911,"url":"https://github.com/cloudhead/neovim-fuzzy","last_synced_at":"2025-04-12T14:40:24.981Z","repository":{"id":48978970,"uuid":"66166846","full_name":"cloudhead/neovim-fuzzy","owner":"cloudhead","description":"Minimalistic fuzzy file finding for neovim","archived":false,"fork":false,"pushed_at":"2023-11-25T11:31:07.000Z","size":47,"stargazers_count":113,"open_issues_count":10,"forks_count":17,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-26T09:11:26.640Z","etag":null,"topics":["fuzzy-search","neovim","neovim-plugin","vim","vim-plugin"],"latest_commit_sha":null,"homepage":"","language":"Vim Script","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudhead.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-08-20T20:31:47.000Z","updated_at":"2025-01-17T08:19:15.000Z","dependencies_parsed_at":"2025-02-21T15:34:43.510Z","dependency_job_id":"17acbaba-84f4-470b-910b-ac81b5f26a0e","html_url":"https://github.com/cloudhead/neovim-fuzzy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudhead%2Fneovim-fuzzy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudhead%2Fneovim-fuzzy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudhead%2Fneovim-fuzzy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudhead%2Fneovim-fuzzy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudhead","download_url":"https://codeload.github.com/cloudhead/neovim-fuzzy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248582302,"owners_count":21128352,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fuzzy-search","neovim","neovim-plugin","vim","vim-plugin"],"created_at":"2024-10-14T09:14:09.607Z","updated_at":"2025-04-12T14:40:24.961Z","avatar_url":"https://github.com/cloudhead.png","language":"Vim Script","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n              neovim-fuzzy\n\n\nFuzzy file finding for neovim, via fzy[1].\n\n[1]: https://github.com/jhawthorn/fzy\n\n. Rationale\n\n  To my knowledge, fzy delivers the best results out of all fuzzy finders,\n  including fzf, ctrl-p, command-t and unite. This is due to the advanced scoring\n  algorithm[2].\n\n  [2]: https://github.com/jhawthorn/fzy/blob/master/ALGORITHM.md\n\n. Requirements\n\n  * neovim \u003e= 0.1.5\n  * fzy\n  * rg[1] or ag[2] \u003e= 0.33.0\n\n  [1]: https://github.com/BurntSushi/ripgrep\n  [2]: http://geoff.greer.fm/ag/\n\n. Installation\n\n  Install `fzy` via your package manager, or check https://github.com/jhawthorn/fzy\n  for instructions.\n\n  If you're using vim-plug, add this to your vimrc:\n\n      Plug 'cloudhead/neovim-fuzzy'\n\n  You can also copy the contents of this directory into your .vim folder.\n\n. Usage\n\n  Add something like this to your vimrc:\n\n      nnoremap \u003cC-p\u003e :FuzzyOpen\u003cCR\u003e\n\n  Then hit \u003cCtrl-P\u003e to open the finder.\n\n  Once in the fzy finder:\n\n      \u003cEsc\u003e     close fzy pane\n      \u003cEnter\u003e   open selected file with default open command\n      \u003cCtrl-S\u003e  open selected file in new horizontal split\n      \u003cCtrl-V\u003e  open selected file in new vertical split\n      \u003cCtrl-T\u003e  open selected file in new tab\n      \u003cCtrl-N\u003e  next entry\n      \u003cCtrl-P\u003e  previous entry\n\n  See the fzy documentation for the full list of key bindings.\n\n  neovim-fuzzy-specific keybindings can be disabled with:\n\n      let g:fuzzy_bindkeys = 0\n\n  Set your own keybindings for opening files in splits with:\n\n      autocmd FileType fuzzy tnoremap \u003csilent\u003e \u003cbuffer\u003e \u003cC-T\u003e \u003cC-\\\u003e\u003cC-n\u003e:FuzzyOpenFileInTab\u003cCR\u003e\n      autocmd FileType fuzzy tnoremap \u003csilent\u003e \u003cbuffer\u003e \u003cC-S\u003e \u003cC-\\\u003e\u003cC-n\u003e:FuzzyOpenFileInSplit\u003cCR\u003e\n      autocmd FileType fuzzy tnoremap \u003csilent\u003e \u003cbuffer\u003e \u003cC-V\u003e \u003cC-\\\u003e\u003cC-n\u003e:FuzzyOpenFileInVSplit\u003cCR\u003e\n\n  When no input is given, fuzzy shows the alternate buffer (also known as '#'),\n  followed by other open buffers, followed by all other files.\n\n  Fuzzy also lets you search within files, via the :FuzzyGrep command. You can\n  use it on its own, or pass it an expression to search.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudhead%2Fneovim-fuzzy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudhead%2Fneovim-fuzzy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudhead%2Fneovim-fuzzy/lists"}