Variable: forge-common-map

forge-common-map is a variable defined in forge-topic.el.

Value

C-<return>  forge--item-menu
C-c C-c     forge--list-menu
C-c RET     forge--item-menu

Documentation

Parent keymap of many of Forge's keymaps.

Keymaps that use this keymap as the/a parent keymap, remap the place-holder commands forge--list-menu and/or forge--item-menu to the appropriate menu command. To change the keys bound to menu commands in all Forge keymaps, one only has to change them here.

Source Code

;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-topic.el
;;; Modes

(defvar-keymap forge-common-map
  :doc "Parent keymap of many of Forge's keymaps.
Keymaps that use this keymap as the/a parent keymap, remap the
place-holder commands `forge--list-menu' and/or `forge--item-menu'
to the appropriate menu command.  To change the keys bound to menu
commands in all Forge keymaps, one only has to change them here."
  "C-c C-c"    #'forge--list-menu
  "C-c RET"    #'forge--item-menu
  "C-<return>" #'forge--item-menu)