Created
December 20, 2017 22:51
-
-
Save jmercouris/b0692ae85cfb9151d31e2ec690e51ef1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun copy () | |
(#/sendAction:to:from: ccl::*nsapp* (objc:@selector #/copy:) nil *next-view*)) | |
(defun paste () | |
(#/sendAction:to:from: ccl::*nsapp* (objc:@selector #/paste:) nil *next-view*)) | |
(defun cut () | |
(#/sendAction:to:from: ccl::*nsapp* (objc:@selector #/cut:) nil *next-view*)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment