Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tyru/current-func-info.vim
Get current function name
https://github.com/tyru/current-func-info.vim
statusline vim
Last synced: 11 days ago
JSON representation
Get current function name
- Host: GitHub
- URL: https://github.com/tyru/current-func-info.vim
- Owner: tyru
- Created: 2010-08-09T23:48:45.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2023-10-19T09:59:14.000Z (about 1 year ago)
- Last Synced: 2024-10-12T18:48:46.107Z (26 days ago)
- Topics: statusline, vim
- Language: Vim script
- Homepage: http://www.vim.org/scripts/script.php?script_id=3197
- Size: 83 KB
- Stars: 62
- Watchers: 7
- Forks: 14
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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. ElixirInstallation
============Manual
------
Copy the files plugin, ftplugin, doc, autoload directories into the related directories on your runtime path.Using [Vundle](https://github.com/gmarik/vundle)
-------------1. Add this line in your VundleFile
```
Bundle "tyru/current-func-info.vim"
```2. Excute this command in your terminal.
```
vim +BundleInstall +qall```
Configuration
=============Echo the current function name.
```VimL
nnoremap f :echo cfi#format("%s", "")
```Or you can show the current function name on statusline.
```VimL
let &statusline .= ' [%{cfi#format("%s", "")}]'
```