未验证 提交 5f182ed2 编写于 作者: D David 提交者: GitHub

Merge pull request #43042 from dibarbet/typescript_sig_help

Order roslyn signature help after LSP command handler.
......@@ -38,6 +38,9 @@ namespace Microsoft.CodeAnalysis.Editor.CommandHandlers
[ContentType(ContentTypeNames.RoslynContentType)]
[Name(PredefinedCommandHandlerNames.SignatureHelpAfterCompletion)]
[Order(After = PredefinedCompletionNames.CompletionCommandHandler)]
// Ensure roslyn comes after LSP to allow them to provide results.
// https://github.com/dotnet/roslyn/issues/42338
[Order(After = "LSP SignatureHelpCommandHandler")]
internal class SignatureHelpAfterCompletionCommandHandler :
AbstractSignatureHelpCommandHandler,
IChainedCommandHandler<EscapeKeyCommandArgs>,
......
......@@ -38,6 +38,9 @@ namespace Microsoft.CodeAnalysis.Editor.CommandHandlers
[ContentType(ContentTypeNames.RoslynContentType)]
[Name(PredefinedCommandHandlerNames.SignatureHelpBeforeCompletion)]
[Order(Before = PredefinedCompletionNames.CompletionCommandHandler)]
// Ensure roslyn comes after LSP to allow them to provide results.
// https://github.com/dotnet/roslyn/issues/42338
[Order(After = "LSP SignatureHelpCommandHandler")]
internal class SignatureHelpBeforeCompletionCommandHandler :
AbstractSignatureHelpCommandHandler,
IChainedCommandHandler<TypeCharCommandArgs>,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册