Function: isearch-tmm-menubar
isearch-tmm-menubar is an interactive and byte-compiled function
defined in isearch.el.gz.
Signature
(isearch-tmm-menubar)
Documentation
Run tmm-menubar while isearch-mode(var)/isearch-mode(fun) is enabled.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/isearch.el.gz
;; Define isearch-mode keymap.
(defun isearch-tmm-menubar ()
"Run `tmm-menubar' while `isearch-mode' is enabled."
(interactive)
(require 'tmm)
(run-hooks 'menu-bar-update-hook)
(let ((command nil))
(let ((menu-bar (menu-bar-keymap)))
(with-isearch-suspended
(setq command (let ((isearch-mode t)) ; Show bindings from
; `isearch-mode-map' in
; tmm's prompt.
(tmm-prompt menu-bar nil nil t)))))
(call-interactively command)))