Move code action and completion edit messages to the background

Antonio Scandurra created

Change summary

crates/rpc/src/proto.rs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

Detailed changes

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),