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 (global-set-key "\C-x6" #'2C-command)

;;;###autoload (global-set-key [f2] #'2C-command)

(defvar 2C-minor-mode-map
  (let ((map (make-sparse-keymap)))
    (define-key map "1" #'2C-merge)
    (define-key map "d" #'2C-dissociate)
    (define-key map "o" #'2C-associated-buffer)
    (define-key map "\^m" #'2C-newline)
    (define-key map "|" #'2C-toggle-autoscroll)
    (define-key map "{" #'2C-shrink-window-horizontally)
    (define-key map "}" #'2C-enlarge-window-horizontally)
    map)
  "Keymap for commands for use in two-column mode.")