From 48496274c1561410d4a6e569fdc5a850bcc2a04d Mon Sep 17 00:00:00 2001 From: jinzhongjia Date: Thu, 1 Feb 2024 13:33:16 +0800 Subject: [PATCH] [fix]: remove signature command option --- lua/LspUI/_meta.lua | 1 - lua/LspUI/config.lua | 1 - 2 files changed, 2 deletions(-) diff --git a/lua/LspUI/_meta.lua b/lua/LspUI/_meta.lua index 233dfe1..9596b12 100644 --- a/lua/LspUI/_meta.lua +++ b/lua/LspUI/_meta.lua @@ -73,7 +73,6 @@ --- @class LspUI_signature --- @field enable boolean? whether enable `signature` module ---- @field command_enable boolean? whether enable command for `signature` --- @field icon string? the icon for float signature --- @field color {fg: string?, bg: string?}? the color for signature --- @field debounce (integer|boolean)? whether enable debounce for signature ? defalt is 250 milliseconds, this will reduce calculations when you move the cursor frequently, but it will cause the delay of signature, false will diable it diff --git a/lua/LspUI/config.lua b/lua/LspUI/config.lua index 141ec5f..85a30e0 100644 --- a/lua/LspUI/config.lua +++ b/lua/LspUI/config.lua @@ -150,7 +150,6 @@ local default_call_hierarchy_config = { --- @type LspUI_signature local default_signature_config = { enable = false, - command_enable = true, icon = "✨", color = { fg = "#FF8C00",