Function: event-apply-super-modifier

event-apply-super-modifier is a byte-compiled function defined in simple.el.gz.

Signature

(event-apply-super-modifier IGNORE-PROMPT)

Documentation

Add the Super modifier to the following event.

For example, type C-x @ s (event-apply-super-modifier) & to enter Super-&.

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun event-apply-super-modifier (_ignore-prompt)
  "\\<function-key-map>Add the Super modifier to the following event.
For example, type \\[event-apply-super-modifier] & to enter Super-&."
  (vector (event-apply-modifier (read-event) 'super 23 "s-")))