Skip to content

tyru/current-func-info.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

  1. C
  2. Go
  3. Perl
  4. PHP
  5. Python
  6. Ruby
  7. VimL
  8. PL/SQL
  9. sh, Bash, Zsh
  10. Elixir

Installation

Manual

Copy the files plugin, ftplugin, doc, autoload directories into the related directories on your runtime path.

Using Vundle

  1. Add this line in your VundleFile
    Bundle "tyru/current-func-info.vim"
  1. 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", "")}]'