mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 02:00:05 +08:00
Add extra space after branch name (#3456)
This commit is contained in:
parent
5ebbec752f
commit
e663ae20d5
@ -65,9 +65,9 @@ function! s:git_branch() abort
|
||||
let l:head = fugitive#head()
|
||||
endif
|
||||
if g:spacevim_statusline_unicode_symbols == 1
|
||||
return empty(l:head) ? '' : ' '.l:head . s:gtm_status()
|
||||
return empty(l:head) ? '' : ' '.l:head . ' ' . s:gtm_status()
|
||||
else
|
||||
return empty(l:head) ? '' : ' '.l:head . s:gtm_status()
|
||||
return empty(l:head) ? '' : ' '.l:head . ' ' . s:gtm_status()
|
||||
endif
|
||||
catch
|
||||
endtry
|
||||
|
Loading…
Reference in New Issue
Block a user