Retab: Remove tab to spaces

This commit is contained in:
Marcin Woźniak 2022-01-02 01:37:32 +01:00
parent 4102d46fda
commit c37a86d6c9
Signed by: y0rune
GPG Key ID: F204C385F57EB348
1 changed files with 3 additions and 3 deletions

View File

@ -175,12 +175,12 @@ highlight ColorColumn ctermbg=236
" Status Line
""""""""""""""""""""""""""""""""
function! GitBranch()
return system("git rev-parse --abbrev-ref HEAD 2>/dev/null | tr -d '\n'")
return system("git rev-parse --abbrev-ref HEAD 2>/dev/null | tr -d '\n'")
endfunction
function! StatuslineGit()
let l:branchname = GitBranch()
return strlen(l:branchname) > 0?' '.l:branchname.' ':''
let l:branchname = GitBranch()
return strlen(l:branchname) > 0?' '.l:branchname.' ':''
endfunction
set statusline=