mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
fix(inspect): use correct default highlight
Problem: `vim.highlight` was renamed on `master`, breaking the
backported fix.
Solution: Use old name.
Fixup for 650dcbbafe
This commit is contained in:
committed by
Christian Clason
parent
4e1b1b6fd7
commit
d8149e5af9
@ -186,7 +186,7 @@ function vim.show_pos(bufnr, row, col, filter)
|
||||
capture,
|
||||
string.format(
|
||||
'priority: %d language: %s',
|
||||
capture.metadata.priority or vim.hl.priorities.treesitter,
|
||||
capture.metadata.priority or vim.highlight.priorities.treesitter,
|
||||
capture.lang
|
||||
)
|
||||
)
|
||||
|
Reference in New Issue
Block a user