Skip to content

Instantly share code, notes, and snippets.

@jmercouris
Created December 19, 2017 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmercouris/a572145629fdb187e5f0b8ac973c5606 to your computer and use it in GitHub Desktop.
Save jmercouris/a572145629fdb187e5f0b8ac973c5606 to your computer and use it in GitHub Desktop.
(defun some-user-function ()
(let ((input-1 (get-minibuffer-input "what's your age?"))
(input-2 (get-minibuffer-input "what's your name?")))
;; some arbitrary Execution
))
(defun get-minibuffer-input (prompt)
;; Register Waiting for some Item in Queue
;; After Getting Item in Queue, function continues and returns
)
(defun process-keystroke ()
;; Send Input Completed event when RET detected within minibuffer
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment