mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	fix(tohtml): replace ipairs with pairs
This commit is contained in:
		@@ -521,7 +521,7 @@ local function _styletable_extmarks_virt_text(state, extmark)
 | 
				
			|||||||
    hl_mode = 'blend',
 | 
					    hl_mode = 'blend',
 | 
				
			||||||
    hl_group = 'combine',
 | 
					    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
 | 
					    if extmark[4][opt] == val then
 | 
				
			||||||
      vim.notify_once(
 | 
					      vim.notify_once(
 | 
				
			||||||
        ('Info(TOhtml): extmark.%s="%s" is not supported, HTML may be incorrect'):format(opt, val)
 | 
					        ('Info(TOhtml): extmark.%s="%s" is not supported, HTML may be incorrect'):format(opt, val)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user