From d0d69161670cf93351e9e9c3a96308374bc60f50 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 3 Mar 2022 13:54:26 +0100 Subject: [PATCH] Move code action and completion edit messages to the background --- crates/rpc/src/proto.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/rpc/src/proto.rs b/crates/rpc/src/proto.rs index f60c2d2c0fb2be91cb0356d3b938c317e241d2a1..0729dbc76ad8a6123df35df89a349542d24e98d1 100644 --- a/crates/rpc/src/proto.rs +++ b/crates/rpc/src/proto.rs @@ -139,10 +139,10 @@ macro_rules! entity_messages { messages!( (Ack, Foreground), (AddProjectCollaborator, Foreground), - (ApplyCodeAction, Foreground), - (ApplyCodeActionResponse, Foreground), - (ApplyCompletionAdditionalEdits, Foreground), - (ApplyCompletionAdditionalEditsResponse, Foreground), + (ApplyCodeAction, Background), + (ApplyCodeActionResponse, Background), + (ApplyCompletionAdditionalEdits, Background), + (ApplyCompletionAdditionalEditsResponse, Background), (BufferReloaded, Foreground), (BufferSaved, Foreground), (ChannelMessageSent, Foreground),