lsp-lens.nvim icon indicating copy to clipboard operation
lsp-lens.nvim copied to clipboard

Add a dividing line

Open LintaoAmons opened this issue 1 year ago • 1 comments

If it's possible to add a dividing line along with the text

like: image

LintaoAmons avatar Aug 22 '23 05:08 LintaoAmons

This is kind of possible atm by adjusting the default highlight to use underlining, e.g.

{
    "VidocqH/lsp-lens.nvim",
    config = function()
        require 'lsp-lens'.setup({})
        vim.api.nvim_set_hl(0, "LspLens", { underline = true })
    end
} 

If you want to combine the underline highlight with your comment highlight (the default for lsp-lens), you can implement that by getting the comment fg highlight and combining it with underline = true

mcauley-penney avatar Oct 21 '23 23:10 mcauley-penney