From 5418013a39673f80a6b73c506ba8e9292da63007 Mon Sep 17 00:00:00 2001 From: Eric Holk Date: Wed, 4 Mar 2026 15:50:48 -0800 Subject: [PATCH] agent_ui: Add "Paste as Plain Text" to message editor context menu (#50625) Add the existing `PasteRaw` action to the right-click context menu in the message editor, making it more discoverable. Previously it was only available via the keyboard shortcut (Cmd+Shift+V / Ctrl+Shift+V) or the command palette. Release Notes: - Added "Paste as Plain Text" to the agent panel message editor right-click menu --- crates/agent_ui/src/message_editor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/agent_ui/src/message_editor.rs b/crates/agent_ui/src/message_editor.rs index 36d18a5843dac6d7ae52b591a2e5a402093ac118..c75d0479b7bf16229cc487544d2c87403b3da430 100644 --- a/crates/agent_ui/src/message_editor.rs +++ b/crates/agent_ui/src/message_editor.rs @@ -154,6 +154,7 @@ impl MessageEditor { Box::new(editor::actions::Copy), ) .action("Paste", Box::new(editor::actions::Paste)) + .action("Paste as Plain Text", Box::new(PasteRaw)) })) });