-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Copy and Paste is not working on OSX #1
Comments
there is guide to enable it - https://pracucci.com/atom-electron-enable-copy-and-paste.html |
index 1df59d2..8eb1cb5 100644
--- a/public/menu.js
+++ b/public/menu.js
@@ -16,6 +16,44 @@ const template = [
]
},
{
+ label: "Edit",
+ submenu: [
+ {
+ label: "Undo",
+ accelerator: "CmdOrCtrl+Z",
+ selector: "undo:"
+ },
+ {
+ label: "Redo",
+ accelerator: "Shift+CmdOrCtrl+Z",
+ selector: "redo:"
+ },
+ {
+ type: "separator"
+ },
+ {
+ label: "Cut",
+ accelerator: "CmdOrCtrl+X",
+ selector: "cut:"
+ },
+ {
+ label: "Copy",
+ accelerator: "CmdOrCtrl+C",
+ selector: "copy:"
+ },
+ {
+ label: "Paste",
+ accelerator: "CmdOrCtrl+V",
+ selector: "paste:"
+ },
+ {
+ label: "Select All",
+ accelerator: "CmdOrCtrl+A",
+ selector: "selectAll:"
+ }
+ ]
+ },
+ {
label: "View",
submenu: [
{role: "reload"}, |
This is wonderful application and when are you releasing the above patch and i see alot of value with this feature |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
there is no way how to paste (at least I didn't find it) any text to this app on OSX. The regular CMD+V does nothing.
The text was updated successfully, but these errors were encountered: