From ccfda77c8e6ca4641995eac672dbba8ae57b22bb Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Fri, 28 May 2021 12:09:38 +0200 Subject: [PATCH] Reorder participants to improve stability --- src/vs/editor/contrib/hover/modesContentHover.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/contrib/hover/modesContentHover.ts b/src/vs/editor/contrib/hover/modesContentHover.ts index ed8f4513cae..9a290bf3c48 100644 --- a/src/vs/editor/contrib/hover/modesContentHover.ts +++ b/src/vs/editor/contrib/hover/modesContentHover.ts @@ -234,8 +234,8 @@ export class ModesContentHoverWidget extends Widget implements IContentWidget, I const participants = [ instantiationService.createInstance(ColorHoverParticipant, editor, this), instantiationService.createInstance(MarkdownHoverParticipant, editor, this), + instantiationService.createInstance(InlineCompletionsHoverParticipant, editor, this), instantiationService.createInstance(MarkerHoverParticipant, editor, this), - instantiationService.createInstance(InlineCompletionsHoverParticipant, editor, this) ]; this._hover = this._register(new HoverWidget());