Created
August 16, 2012 19:39
-
-
Save agentultra/3372969 to your computer and use it in GitHub Desktop.
the caruso function
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
;; just copypasta to your *scratch* buffer and C-j | |
;; or add it to your emacs init file for awesomeness | |
(defun caruso (setup finisher) | |
(interactive "sSetup: \nsFinisher: ") | |
(insert (concat "(•_•) " setup "...\n")) | |
(insert "( •_•)>⌐■-■\n") | |
(insert (concat "(⌐■_■) ..." finisher "\n")) | |
(insert "YYYeeeeaaaah!!!!\n")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment