Variable: follow-mode-prefix

follow-mode-prefix is a customizable variable defined in follow.el.gz.

This variable is obsolete since 31.1; use follow-mode-prefix-key instead.

Value

"."

Documentation

Prefix key to use for follow commands in Follow mode.

The value of this variable is checked as part of loading Follow mode. After that, changing the prefix key requires manipulating keymaps.

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/follow.el.gz
;;; Keymap/Menu

;; Define keys for the follow-mode minor mode map and replace some
;; functions in the global map.  All Follow mode special functions can
;; be found on the `C-c .' prefix key.
;;
;; To change the prefix, redefine `follow-mode-prefix' before `follow'
;; is loaded, or see the section on `follow-mode-hook' above for an
;; example of how to bind the keys the way you like.

(defcustom follow-mode-prefix "\C-c."
  "Prefix key to use for follow commands in Follow mode.
The value of this variable is checked as part of loading Follow mode.
After that, changing the prefix key requires manipulating keymaps."
  :type 'string
  :group 'follow)