Variable: Info-mode-menu

Info-mode-menu is a variable defined in info.el.gz.

Value

<Next> <Info-check-pointer>      nil
<Previous> <Info-check-pointer>  nil
<Up> <Info-check-pointer>        nil
<nil-13>                         nil
<nil-19>                         nil
<nil>                            nil

Documentation

Menu for Info files.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/info.el.gz
(easy-menu-define
 Info-mode-menu Info-mode-map
 "Menu for Info files."
 '("Info"
   ["Up" Info-up :active (Info-check-pointer "up")
    :help "Go up in the Info tree"]
   ["Next" Info-next :active (Info-check-pointer "next")
    :help "Go to the next node"]
   ["Previous" Info-prev :active (Info-check-pointer "prev[ious]*")
    :help "Go to the previous node"]
   ["Backward" Info-backward-node
    :help "Go backward one node, considering all as a sequence"]
   ["Forward" Info-forward-node
    :help "Go forward one node, considering all as a sequence"]
   ["Beginning" beginning-of-buffer
    :help "Go to beginning of this node"]
   ["Top" Info-top-node
    :help "Go to top node of file"]
   ["Final Node" Info-final-node
    :help "Go to final node in this file"]
   "---"
   ("Menu Item" ["You should never see this" report-emacs-bug t])
   ("Reference" ["You should never see this" report-emacs-bug t])
   ["Search..." Info-search
    :help "Search for regular expression in this Info file"]
   ["Search Next" Info-search-next
    :help "Search for another occurrence of regular expression"]
   "---"
   ("History"
    ["Back in History" Info-history-back :active Info-history
     :help "Go back in history to the last node you were at"]
    ["Forward in History" Info-history-forward :active Info-history-forward
     :help "Go forward in history"]
    ["Show History" Info-history :active Info-history-list
     :help "Go to menu of visited nodes"])
   ("Go to"
    ["Go to Node..." Info-goto-node
    :help "Go to a named node"]
    ["Table of Contents" Info-toc
     :help "Go to table of contents"]
    ["Go to Directory" Info-directory
     :help "Go to the Info directory node."])
   ("Index"
    ["Lookup a String..." Info-index
     :help "Look for a string in the index items"]
    ["Next Matching Item" Info-index-next :active Info-index-alternatives
     :help "Look for another occurrence of previous item"]
    ["Lookup a string and display index of results..." Info-virtual-index
     :help "Look for a string in the index items and display node with results"]
    ["Lookup a string in all indices..." info-apropos
     :help "Look for a string in the indices of all manuals"])
   ["Copy Node Name" Info-copy-current-node-name
    :help "Copy the name of the current node into the kill ring"]
   ["Clone Info buffer" clone-buffer
    :help "Create a twin copy of the current Info buffer."]
   "---"
   ["Exit" quit-window :help "Stop reading Info"]))