7 lines
216 B
VimL
Executable file
7 lines
216 B
VimL
Executable file
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 " }}}
|