Function: context-menu-open

context-menu-open is an interactive and byte-compiled function defined in mouse.el.gz.

Signature

(context-menu-open)

Documentation

Start key navigation of the context menu.

This is the keyboard interface to M-x context-menu-map (context-menu-map).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mouse.el.gz
(defun context-menu-open ()
  "Start key navigation of the context menu.
This is the keyboard interface to \\[context-menu-map]."
  (interactive)
  (let ((inhibit-mouse-event-check t)
        (map (context-menu-map)))
    (if (commandp map)
        (call-interactively map)
      (popup-menu map (point)))))