Variable: goto-map

goto-map is a variable defined in bindings.el.gz.

Value

M-g  goto-line
M-n  next-error
M-p  previous-error
TAB  move-to-column
c    goto-char
g    goto-line
i    imenu
n    next-error
p    previous-error

Documentation

Keymap for navigation commands.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/bindings.el.gz
(defvar-keymap goto-map
  :doc "Keymap for navigation commands."
  "c"   #'goto-char
  "g"   #'goto-line
  "M-g" #'goto-line
  "n"   #'next-error
  "M-n" #'next-error
  "p"   #'previous-error
  "M-p" #'previous-error
  "TAB" #'move-to-column
  "i"   #'imenu)