Variable: 2C-minor-mode-map

2C-minor-mode-map is a variable defined in two-column.el.gz.

Value

1    2C-merge
RET  2C-newline
d    2C-dissociate
o    2C-associated-buffer
{    2C-shrink-window-horizontally
|    2C-toggle-autoscroll
}    2C-enlarge-window-horizontally

Documentation

Keymap for commands for use in two-column mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/two-column.el.gz
;; This one is for historical reasons and simple keyboards, it is not
;; at all mnemonic.  All usual sequences containing 2 were used, and
;; f2 could not be set up in a standard way under Emacs 18.
;;;###autoload (keymap-global-set "C-x 6" #'2C-command)

;;;###autoload (keymap-global-set "<f2>" #'2C-command)

(defvar-keymap 2C-minor-mode-map
  :doc "Keymap for commands for use in two-column mode."
  "1"   #'2C-merge
  "d"   #'2C-dissociate
  "o"   #'2C-associated-buffer
  "RET" #'2C-newline
  "|"   #'2C-toggle-autoscroll
  "{"   #'2C-shrink-window-horizontally
  "}"   #'2C-enlarge-window-horizontally)