current-func-info.vim
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.
Supported Languages
- C
- Go
- Perl
- PHP
- Python
- Ruby
- VimL
- PL/SQL
- sh, Bash, Zsh
- Elixir
Installation
Manual
Copy the files plugin, ftplugin, doc, autoload directories into the related directories on your runtime path.
Vundle
Using- Add this line in your VundleFile
Bundle "tyru/current-func-info.vim"
- Excute this command in your terminal.
vim +BundleInstall +qall
Configuration
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", "")}]'