Variable: occur-menu-map

occur-menu-map is a variable defined in replace.el.gz.

Value

<nil-12>  nil
<nil>     nil

Documentation

Menu for occur-mode.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/replace.el.gz
(easy-menu-define occur-menu-map nil
  "Menu for `occur-mode'."
  '("Occur"
    ["Move to Previous Match" occur-prev
     :help "Move to the Nth (default 1) previous match in an Occur mode buffer"]
    ["Move to Next Match" occur-next
     :help "Move to the Nth (default 1) next match in an Occur mode buffer"]
    ["Display Occurrence" occur-mode-display-occurrence
     :help "Display in another window the occurrence the current line describes"]
    ["Go To Occurrence" occur-mode-goto-occurrence
     :help "Go to the occurrence the current line describes"]
    ["Go To Occurrence Other Window" occur-mode-goto-occurrence-other-window
     :help "Go to the occurrence the current line describes, in another window"]
    "---"
    ["Edit Occur Buffer" occur-edit-mode
     :help "Edit the *Occur* buffer and apply changes to the original buffers."]
    ["Rename Occur Buffer" occur-rename-buffer
     :help "Rename the current *Occur* buffer to *Occur: original-buffer-name*."]
    ["Clone Occur Buffer" clone-buffer
     :help "Create and return a twin copy of the current *Occur* buffer"]
    ["Revert Occur Buffer" revert-buffer
     :help "Replace the text in the *Occur* buffer with the results of rerunning occur"]
    ["Quit Occur Window" quit-window
     :help "Quit the current *Occur* buffer.  Bury it, and maybe delete the selected frame"]
    ["Kill Occur Buffer" kill-this-buffer
     :help "Kill the current *Occur* buffer"]
    "---"
    ["Auto Occurrence Display"
     next-error-follow-minor-mode
     :help "Display another occurrence when moving the cursor"
     :style toggle
     :selected (and (boundp 'next-error-follow-minor-mode)
                    next-error-follow-minor-mode)]))