Skip to content

Instantly share code, notes, and snippets.

@esehara
Created December 8, 2016 13:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esehara/672f2b68b109abeeb841a7f8effc3045 to your computer and use it in GitHub Desktop.
Save esehara/672f2b68b109abeeb841a7f8effc3045 to your computer and use it in GitHub Desktop.
ジャバ
(defun java-button ()
(interactive)
(progn
(start-process
"java-button-process"
nil
"aplay"
(concat (getenv "HOME") "/Archive/" "java.wav"))
;; (newline) ???
))
(global-set-key [return] 'java-button)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment