We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8e26d0 commit f113247Copy full SHA for f113247
autoload/sy/sign.vim
@@ -248,6 +248,12 @@ endfunction
248
249
" s:external_sign_present {{{1
250
function! s:external_sign_present(sy, line) abort
251
+ " If sign priority is supported, so are multiple signs per line.
252
+ " Therefore, we can report no external signs present and let
253
+ " g:signify_priority control whether Sy's signs are shown.
254
+ if !empty(s:sign_priority)
255
+ return
256
+ endif
257
if has_key(a:sy.external, a:line)
258
if has_key(a:sy.internal, a:line)
259
" Remove Sy signs from lines with other signs.
0 commit comments