Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
zztrieuzz committed Jul 24, 2023
1 parent 66badcb commit 7bc8baf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lua/windline/components/lsp_progress.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ M.lsp_progress = function(opts)
if val.kind == 'begin' then
progess.message = opts.message.commenced
progess.title = val.title and (val.title .. ' ') or ''
elseif val.kind == 'report' then
elseif val.kind == 'report' and val.message then
progess.message = progess.title .. val.message
progess.percentage = val.percentage or 0
elseif val.kind == 'end' then
Expand Down
4 changes: 2 additions & 2 deletions lua/windline/themes/gruvbox-material.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ local colors = {
ActiveFg = '#928b95',
ActiveBg = '#282828',

TabSelectionBg= "#b8bb26",
TabSelectionFg= "#282828"
TabSelectionBg= "#3c3836",
TabSelectionFg= "#fabd2f"
}


Expand Down

0 comments on commit 7bc8baf

Please sign in to comment.