Improve alignment of right side of statusline

pull/1/head
Ensar Sarajčić 2021-01-17 22:53:39 +01:00
parent 5a85acdaf5
commit 746f41f817
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ function GetStatusLine()
if exists('g:loaded_ale')
let l:status_line_right .= s:LinterStatus() " ALE status
endif
let l:status_line_right .= " %c:%l/%L (%p%%) " " col, line, tot. lines
let l:status_line_right .= " %2c:%3l/%3L (%3p%%) " " col, line, tot. lines
let l:status_line_right .= s:GetFileType() . " " " File type
return l:status_line_left . l:status_line_right
endfunction