We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5912e6 commit 2a6e7c7Copy full SHA for 2a6e7c7
Sources/CodeEditTextView/TextView/TextView+Menu.swift
@@ -15,8 +15,8 @@ extension TextView {
15
16
menu.items = [
17
NSMenuItem(title: "Cut", action: #selector(cut(_:)), keyEquivalent: "x"),
18
- NSMenuItem(title: "Copy", action: #selector(undo(_:)), keyEquivalent: "c"),
19
- NSMenuItem(title: "Paste", action: #selector(undo(_:)), keyEquivalent: "v")
+ NSMenuItem(title: "Copy", action: #selector(copy(_:)), keyEquivalent: "c"),
+ NSMenuItem(title: "Paste", action: #selector(paste(_:)), keyEquivalent: "v")
20
]
21
22
return menu
0 commit comments