Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
nanashili committed Jun 22, 2024
1 parent ca8f531 commit 0b509a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/AuroraEditorTextView/TextView/TextView+Menu.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ extension TextView {
return [
CustomMenuItem(title: "Cut", action: #selector(cut(_:)), keyEquivalent: "x"),
CustomMenuItem(title: "Copy", action: #selector(copy(_:)), keyEquivalent: "c"),
CustomMenuItem(title: "Paste", action: #selector(paste(_:)), keyEquivalent: "v")
CustomMenuItem(title: "Paste", action: #selector(paste(_:)), keyEquivalent: "v"),
CustomMenuItem(title: "Delete", action: nil, keyEquivalent: "d")
]
}

Expand Down

0 comments on commit 0b509a8

Please sign in to comment.