Add space between idx and text in ordinal

This commit is contained in:
Andrii Savytskyi 2022-09-15 16:14:33 +03:00 committed by GitHub
parent ce8fdc8907
commit 175d86172b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ M.custom_kind = {
display = make_display,
text = text,
client_name = client_name,
ordinal = idx .. "" .. text .. " " .. client_name,
ordinal = idx .. " " .. text .. " " .. client_name,
value = item,
})
end