mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 13:20: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()
|
let l:head = fugitive#head()
|
||||||
endif
|
endif
|
||||||
if g:spacevim_statusline_unicode_symbols == 1
|
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
|
else
|
||||||
return empty(l:head) ? '' : ' '.l:head . s:gtm_status()
|
return empty(l:head) ? '' : ' '.l:head . ' ' . s:gtm_status()
|
||||||
endif
|
endif
|
||||||
catch
|
catch
|
||||||
endtry
|
endtry
|
||||||
|
Loading…
Reference in New Issue
Block a user