Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 83de509

Browse files
author
Your Name
committedMar 18, 2025
Work around nvim script loading issue
1 parent 44936d0 commit 83de509

File tree

1 file changed

+34
-32
lines changed

1 file changed

+34
-32
lines changed
 

‎autoload/coc/highlight.vim

+34-32
Original file line numberDiff line numberDiff line change
@@ -237,38 +237,6 @@ function! coc#highlight#ranges(bufnr, key, hlGroup, ranges, ...) abort
237237
endfor
238238
endfunction
239239

240-
if !s:is_vim
241-
function! coc#highlight#add_highlight(bufnr, src_id, hl_group, line, col_start, col_end, ...) abort
242-
let opts = get(a:, 1, {})
243-
let priority = get(opts, 'priority', v:null)
244-
if a:src_id == -1
245-
call nvim_buf_add_highlight(a:bufnr, a:src_id, a:hl_group, a:line, a:col_start, a:col_end)
246-
else
247-
" get(opts, 'start_incl', 0) ? v:true : v:false,
248-
try
249-
call nvim_buf_set_extmark(a:bufnr, a:src_id, a:line, a:col_start, {
250-
\ 'end_col': a:col_end,
251-
\ 'hl_group': a:hl_group,
252-
\ 'hl_mode': get(opts, 'combine', 1) ? 'combine' : 'replace',
253-
\ 'right_gravity': v:true,
254-
\ 'end_right_gravity': v:false,
255-
\ 'priority': type(priority) == 0 ? min([priority, 4096]) : 4096,
256-
\ })
257-
catch /^Vim\%((\a\+)\)\=:E5555/
258-
" the end_col could be invalid, ignore this error
259-
endtry
260-
endif
261-
endfunction
262-
else
263-
def coc#highlight#add_highlight(bufnr: number, src_id: number, hl_group: string, line: number, col_start: number, col_end: number, ...list: list<dict<any>>)
264-
const opts: dict<any> = get(list, 0, {})
265-
if !hlexists(hl_group)
266-
execute $'highlight {hl_group} ctermfg=NONE'
267-
endif
268-
coc#api#exec('buf_add_highlight', [bufnr, src_id, hl_group, line, col_start, col_end, opts])
269-
enddef
270-
endif
271-
272240
function! coc#highlight#clear_highlight(bufnr, key, start_line, end_line) abort
273241
let bufnr = a:bufnr == 0 ? bufnr('%') : a:bufnr
274242
if !bufloaded(bufnr)
@@ -679,3 +647,37 @@ function! s:group_hls(hls, linecount) abort
679647
call add(groups, {'start': start, 'end': a:linecount, 'highlights': highlights})
680648
return groups
681649
endfunction
650+
651+
if !s:is_vim
652+
function! coc#highlight#add_highlight(bufnr, src_id, hl_group, line, col_start, col_end, ...) abort
653+
let opts = get(a:, 1, {})
654+
let priority = get(opts, 'priority', v:null)
655+
if a:src_id == -1
656+
call nvim_buf_add_highlight(a:bufnr, a:src_id, a:hl_group, a:line, a:col_start, a:col_end)
657+
else
658+
" get(opts, 'start_incl', 0) ? v:true : v:false,
659+
try
660+
call nvim_buf_set_extmark(a:bufnr, a:src_id, a:line, a:col_start, {
661+
\ 'end_col': a:col_end,
662+
\ 'hl_group': a:hl_group,
663+
\ 'hl_mode': get(opts, 'combine', 1) ? 'combine' : 'replace',
664+
\ 'right_gravity': v:true,
665+
\ 'end_right_gravity': v:false,
666+
\ 'priority': type(priority) == 0 ? min([priority, 4096]) : 4096,
667+
\ })
668+
catch /^Vim\%((\a\+)\)\=:E5555/
669+
" the end_col could be invalid, ignore this error
670+
endtry
671+
endif
672+
endfunction
673+
" @workaround Prevent nvim running into the branch for vim below
674+
finish
675+
else
676+
def coc#highlight#add_highlight(bufnr: number, src_id: number, hl_group: string, line: number, col_start: number, col_end: number, ...list: list<dict<any>>)
677+
const opts: dict<any> = get(list, 0, {})
678+
if !hlexists(hl_group)
679+
execute $'highlight {hl_group} ctermfg=NONE'
680+
endif
681+
coc#api#exec('buf_add_highlight', [bufnr, src_id, hl_group, line, col_start, col_end, opts])
682+
enddef
683+
endif

0 commit comments

Comments
 (0)
Please sign in to comment.