@@ -237,38 +237,6 @@ function! coc#highlight#ranges(bufnr, key, hlGroup, ranges, ...) abort
237
237
endfor
238
238
endfunction
239
239
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
-
272
240
function ! coc#highlight#clear_highlight (bufnr , key , start_line, end_line) abort
273
241
let bufnr = a: bufnr == 0 ? bufnr (' %' ) : a: bufnr
274
242
if ! bufloaded (bufnr )
@@ -679,3 +647,37 @@ function! s:group_hls(hls, linecount) abort
679
647
call add (groups, {' start' : start , ' end' : a: linecount , ' highlights' : highlights})
680
648
return groups
681
649
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