# fzf-funky **Repository Path**: jeffcodes/fzf-funky ## Basic Information - **Project Name**: fzf-funky - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-19 - **Last Updated**: 2024-11-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README fzf-funky ============ A super simple function navigator for [fzf](https://github.com/junegunn/fzf), porting from [ctrlp-funky](https://github.com/tacahiroy/ctrlp-funky).It is a very useful plugin when ctags is not exist or lsp is not support. - Support neovim's floating window feature! - Support vim's popup window feature! SYNOPSIS ---------- This is a [fzf](https://github.com/junegunn/fzf) vim extension. It simply navigates and jumps to function definitions from the current file without ctags. It just searches for function definitions or equivalent lines using regular expressions, therefore some languages' abstractions aren't accurate because of them being hard to parse. One of advantages of this plugin is that no configuration is required in most cases, so it starts working right after installation with no ctags required. *If you want to have a more accurate list of function defs, you should use other ctags-based tools, etc.* [![asciicast](https://asciinema.org/a/253055.svg)](https://asciinema.org/a/253055) ### Supported filetypes: See [ctrlp-funky.txt](https://github.com/tracyone/fzf-funky/blob/master/doc/ctrlp-funky.txt#L22) PREMISE ---------- First of all, I believe you're a user of a great Vim plugin called [fzf.vim](https://git::@github.com/junegunn/fzf.vim.git). Otherwise, you need to install fzf.vim before you start using this plugin. INSTALLATION ---------- ### Plugin managers It is recommended to install the plugin using plugin managers such as minpac, vim-plug, pathogen, Vundle, Dein.vim etc. You can copy/paste a line below if you use vim-plug: ```vim Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } Plug 'tracyone/fzf-funky',{'on': 'FzfFunky'} ``` ### Manual installation If you use neither of the plugin management systems, copy _autoload_ and _plugin_ directories to _.vim_ directory. On Windows, basically, _vimfiles_ directory is used instead of _.vim_ directory. CONFIGURATION -------------- It should be useful to define key mappings like this: ```vim nnoremap fu :FzfFunky " narrow the list down with a word under cursor nnoremap fU :execute 'FzfFunky ' . expand('') ``` LINK ------- * [ctrlpvim/ctrlp.vim](https://github.com/ctrlpvim/ctrlp.vim) * [vim.org/ctrlp-funky](http://www.vim.org/scripts/script.php?script_id=4592) * [junegunn/fzf](https://github.com/junegunn/fzf) LICENSE ------- Copyright (C) 2012-2019 Takahiro Yoshihara. Distributed under the MIT License. [1]: http://i.imgur.com/yO4PWAF.png [2]: http://i.imgur.com/CnKui5H.png [3]: http://i.imgur.com/B3hBycd.png