Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhongjia committed Feb 5, 2025
1 parent 8d5d466 commit b14c091
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lua/LspUI/signature/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ local build_signature_info = function(help, client_name)
return nil
end

local active_signature = help.activeSignature and help.activeSignature + 1 or 1
local active_parameter = help.activeParameter and help.activeParameter + 1 or 1
local active_signature = help.activeSignature and help.activeSignature + 1
or 1
local active_parameter = help.activeParameter and help.activeParameter + 1
or 1

--- @type signature_info
---@diagnostic disable-next-line: missing-fields
Expand Down

0 comments on commit b14c091

Please sign in to comment.