ray-x / lsp_signature.nvim

LSP signature hint as you type
Apache License 2.0
1.98k stars 53 forks source link

always_trigger = true doesnt work #292

Open idelice opened 9 months ago

idelice commented 9 months ago

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.

ray-x commented 9 months ago

Should be just

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