fix empty listing on windows.

This commit is contained in:
Senghan Bright 2021-02-10 12:07:27 +01:00
parent a5803b6755
commit 3f6025c78a

View File

@ -162,11 +162,11 @@ local frecency = function(opts)
local entry_maker = function(entry) local entry_maker = function(entry)
return { return {
value = entry.filename, filename = entry.filename,
display = make_display, display = make_display,
ordinal = entry.filename, ordinal = entry.filename,
name = entry.filename, name = entry.filename,
score = entry.score score = entry.score
} }
end end