This Plugin aim to provide the function to get the current function name which your cussor in located at. It is very useful when the function name is long, you dont have to scroll up to know where you are.
- C
- Go
- Perl
- PHP
- Python
- Ruby
- VimL
- PL/SQL
- sh, Bash, Zsh
- Elixir
Copy the files plugin, ftplugin, doc, autoload directories into the related directories on your runtime path.
Using Vundle
- Add this line in your VundleFile
Bundle "tyru/current-func-info.vim"
- Excute this command in your terminal.
vim +BundleInstall +qall
Echo the current function name.
nnoremap <C-g>f :echo cfi#format("%s", "")<CR>
Or you can show the current function name on statusline.
let &statusline .= ' [%{cfi#format("%s", "")}]'