diff options
-rw-r--r-- | src/nvim/decoration.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/decoration.c b/src/nvim/decoration.c index 8d9b234bbc..755655856d 100644 --- a/src/nvim/decoration.c +++ b/src/nvim/decoration.c @@ -629,9 +629,9 @@ next_mark: } else if (item.data.sh.flags & kSHSpellOff) { spell = kFalse; } - } - if (active && item.data.sh.url != NULL) { - attr = hl_add_url(attr, item.data.sh.url); + if (item.data.sh.url != NULL) { + attr = hl_add_url(attr, item.data.sh.url); + } } if (item.start_row == state->row && item.start_col <= col && decor_virt_pos(&item) && item.draw_col == -10) { |