Skip to content

Commit

Permalink
[fix]: remove signature command option
Browse files Browse the repository at this point in the history
Update README.md

Update README.md
  • Loading branch information
jinzhongjia committed Feb 1, 2024
1 parent 1e29734 commit f7bd0a4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A plugin which wraps Neovim LSP operations with a nicer UI.
- Custom implementations of common LSP functions
- Great out of the box UI
- Due to reimplementation of builtins, potentially better performance than builtin neovim functions.
- Commands:
- Supported features:
- Code Action (nvim plugin can register code_action)
- Rename
- Hover
Expand All @@ -18,6 +18,7 @@ A plugin which wraps Neovim LSP operations with a nicer UI.
- Reference
- Implementation
- Inlay Hint
- Signature Help

## 📦 Installation

Expand Down
1 change: 0 additions & 1 deletion lua/LspUI/_meta.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion lua/LspUI/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f7bd0a4

Please sign in to comment.