diff options
Diffstat (limited to 'lisp/windmove.el')
-rw-r--r-- | lisp/windmove.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/windmove.el b/lisp/windmove.el index 6c239dcd1ba..c8ea4fd1e54 100644 --- a/lisp/windmove.el +++ b/lisp/windmove.el @@ -448,6 +448,7 @@ unless `windmove-create-window' is non-nil and a new window is created." (defvar windmove-mode-map (make-sparse-keymap) "Map used by `windmove-install-defaults'.") +;;;###autoload (define-minor-mode windmove-mode "Global minor mode for default windmove commands." :keymap windmove-mode-map @@ -700,7 +701,7 @@ where PREFIX is a prefix key and MODIFIERS is either a list of modifiers or a single modifier. If PREFIX is `none', no prefix is used. If MODIFIERS is `none', the keybindings are directly bound to the arrow keys. -Default value of PREFIX is `C-x' and MODIFIERS is `shift'." +Default value of PREFIX is \\`C-x' and MODIFIERS is `shift'." (interactive) (unless prefix (setq prefix '(?\C-x))) (when (eq prefix 'none) (setq prefix nil)) |