mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
fix(tohtml): replace ipairs with pairs
This commit is contained in:
parent
98536dd78e
commit
2ed6423c7e
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user