StatusView compat fix with older Lua runtimes

This commit is contained in:
jgmdev 2023-04-17 17:26:24 -04:00 committed by George Sokianos
parent e667b16099
commit 76a7fb9f79
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ function StatusView:register_docview_items()
alignment = StatusView.Item.LEFT,
get_item = function()
local dv = core.active_view
local nsel = #dv.doc.selections // 4
local nsel = math.floor(#dv.doc.selections / 4)
if nsel > 1 then
return { style.text, nsel, " selections" }
end