Variable: follow-mode-prefix
follow-mode-prefix is a customizable variable defined in follow.el.gz.
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.
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)