mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	 ad191be65e
			
		
	
	ad191be65e
	
	
	
		
			
			Problem:
Higher-priority signs may be hidden by lower-priority signs.
Solution:
Place higher-priority signs from the left.
Example:
    nvim_buf_set_extmark(0, ns, 0, -1, {sign_text='H', priority=1})
    nvim_buf_set_extmark(0, ns, 0, -1, {sign_text='W', priority=2})
    nvim_buf_set_extmark(0, ns, 0, -1, {sign_text='E', priority=3})
Before:
            |     |
          H | W E |
          ^ |     |
Not visible
After:
  |     |
  | E W | H
  |     | ^
          Not visible
Fixes #16632