Skip to content

Commit 4552a09

Browse files
committed
Merge branch 'master' of github.com:EmmyLua/EmmyLua-LanguageServer
2 parents f891676 + 3e0e506 commit 4552a09

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

EmmyLua-LS/src/main/kotlin/com/tang/vscode/LuaTextDocumentService.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,9 @@ class LuaTextDocumentService(private val workspace: LuaWorkspaceService) : TextD
582582
}
583583
}
584584
}
585-
signatureHelp = SignatureHelp(list, activeSig, activeParameter)
585+
if (list.size > 0) {
586+
signatureHelp = SignatureHelp(list, activeSig, activeParameter)
587+
}
586588
}
587589
signatureHelp
588590
}

0 commit comments

Comments
 (0)