aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/Powerline/Functions/fugitive.vim
diff options
context:
space:
mode:
authorBen Beltran <ben@freshout.us>2013-04-23 08:46:40 -0500
committerBen Beltran <ben@freshout.us>2013-04-23 08:46:40 -0500
commitab4e81bdabe6ea29769bb36a84da97361caf76c8 (patch)
tree62a5302f086f44655af9efefdd467ad20d4e99b7 /vim/autoload/Powerline/Functions/fugitive.vim
parent9c4857b66660faaae28530ad17475037fe554478 (diff)
parent75a6977d066445f43fdb0ed35b7ab8398fdc917d (diff)
Merge branch 'master' of github.com:benbeltran/dotfiles
Diffstat (limited to 'vim/autoload/Powerline/Functions/fugitive.vim')
-rw-r--r--vim/autoload/Powerline/Functions/fugitive.vim7
1 files changed, 0 insertions, 7 deletions
diff --git a/vim/autoload/Powerline/Functions/fugitive.vim b/vim/autoload/Powerline/Functions/fugitive.vim
deleted file mode 100644
index bb00131..0000000
--- a/vim/autoload/Powerline/Functions/fugitive.vim
+++ /dev/null
@@ -1,7 +0,0 @@
-function! Powerline#Functions#fugitive#GetBranch(symbol) " {{{
- let ret = fugitive#statusline()
-
- let ret = substitute(ret, '\c\v\[?GIT\(([a-z0-9\-_\./:]+)\)\]?', a:symbol .' \1', 'g')
-
- return ret
-endfunction " }}}