lsp_signature.nvim icon indicating copy to clipboard operation
lsp_signature.nvim copied to clipboard

always_trigger = true doesnt work

Open idelice opened this issue 1 year ago • 1 comments

here's my lazy config:

return {
  "ray-x/lsp_signature.nvim",
  config = function()
    require("lsp_signature").setup({
      cfg = {
        always_trigger = true,
        -- toggle_key = "<C-p>",
        -- noice = true,
      },
    })
  end,
}

I can't make the signature help to always show.

idelice avatar Oct 15 '23 18:10 idelice

Should be just

require("lsp_signature").setup({
        always_trigger = true,
        -- toggle_key = "<C-p>",
        -- noice = true,
    })
    ```

ray-x avatar Oct 16 '23 03:10 ray-x