Add branch glyph to vim statusline

This commit is contained in:
Dave Gallant
2021-02-07 22:28:51 -05:00
parent b63bbbc6cd
commit cc94750632

View File

@@ -55,7 +55,7 @@ endfunction
function! StatuslineGit()
let l:branchname = GitBranch()
return strlen(l:branchname) > 0?' '.l:branchname.' ':''
return strlen(l:branchname) > 0?' '.l:branchname.' ':''
endfunction
augroup SetStatusline