diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-02-21 21:21:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-21 21:21:42 +0100 |
commit | 10a46a20ce78efa80c1d1f7ac43b2a95ef92ea76 (patch) | |
tree | e5d0d1386982c5ae6e260bd60449d8449be57538 /runtime/lua/vim/diagnostic.lua | |
parent | 1e7cb2dcd975aadeb91b913f117b21c7775c3374 (diff) | |
download | rneovim-10a46a20ce78efa80c1d1f7ac43b2a95ef92ea76.tar.gz rneovim-10a46a20ce78efa80c1d1f7ac43b2a95ef92ea76.tar.bz2 rneovim-10a46a20ce78efa80c1d1f7ac43b2a95ef92ea76.zip |
refactor(highlight)!: optional arguments for highlight.range as table (#17462)
also update documentation
BREAKING CHANGE: signature of highlight.range is now
vim.highlight.range(bufnr, ns, hlgroup, start, finish,
{ regtype = regtype, inclusive = inclusive, priority = priority })
Co-authored-by: Gregory Anders <8965202+gpanders@users.noreply.github.com>
Diffstat (limited to 'runtime/lua/vim/diagnostic.lua')
-rw-r--r-- | runtime/lua/vim/diagnostic.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/lua/vim/diagnostic.lua b/runtime/lua/vim/diagnostic.lua index 8879e2debd..fcb1e61764 100644 --- a/runtime/lua/vim/diagnostic.lua +++ b/runtime/lua/vim/diagnostic.lua @@ -921,9 +921,7 @@ M.handlers.underline = { higroup, { diagnostic.lnum, diagnostic.col }, { diagnostic.end_lnum, diagnostic.end_col }, - 'v', - false, - 150 + { priority = vim.highlight.priorities.diagnostics } ) end save_extmarks(underline_ns, bufnr) |