mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 19:38:20 +00:00
fix(tohtml): replace ipairs with pairs
This commit is contained in:

committed by
Christian Clason

parent
6527f5e2d2
commit
3d319092d5
@@ -521,7 +521,7 @@ local function _styletable_extmarks_virt_text(state, extmark)
|
||||
hl_mode = 'blend',
|
||||
hl_group = 'combine',
|
||||
}
|
||||
for opt, val in ipairs(not_supported) do
|
||||
for opt, val in pairs(not_supported) do
|
||||
if extmark[4][opt] == val then
|
||||
vim.notify_once(
|
||||
('Info(TOhtml): extmark.%s="%s" is not supported, HTML may be incorrect'):format(opt, val)
|
||||
|
Reference in New Issue
Block a user