Skip to content

Commit

Permalink
Refactor status line concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbleclank committed Aug 6, 2023
1 parent 4198387 commit 8b30288
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion autoload/mistfly.vim
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ function! mistfly#ActiveStatusLine() abort
let l:statusline .= l:branch_name . '%* '
endif
let l:statusline .= mistfly#PluginsStatus()
let l:statusline .= '%*%=%l:%c %*' . l:separator
let l:statusline .= '%*%='
let l:statusline .= '%l:%c %*' . l:separator
let l:statusline .= '%* ' . l:mode_emphasis . '%L%* ' . l:progress . '%P '
if g:mistflyWithIndentStatus
let l:statusline .= '%*' . l:separator
Expand Down

0 comments on commit 8b30288

Please sign in to comment.