@@ -1,6 +1,7 @@
use crate::{
- DisplayPoint, Editor, EditorMode, FindAllReferences, GoToDefinition, GoToImplementation,
- GoToTypeDefinition, Rename, RevealInFinder, SelectMode, ToggleCodeActions,
+ Copy, Cut, DisplayPoint, Editor, EditorMode, FindAllReferences, GoToDefinition,
+ GoToImplementation, GoToTypeDefinition, Paste, Rename, RevealInFinder, SelectMode,
+ ToggleCodeActions,
};
use gpui::{DismissEvent, Pixels, Point, Subscription, View, ViewContext};
use workspace::OpenInTerminal;
@@ -85,6 +86,10 @@ pub fn deploy_context_menu(
}),
)
.separator()
+ .action("Cut", Box::new(Cut))
+ .action("Copy", Box::new(Copy))
+ .action("Paste", Box::new(Paste))
+ .separator()
.action("Reveal in Finder", Box::new(RevealInFinder))
.action("Open in Terminal", Box::new(OpenInTerminal));
match focus {