diff options
Diffstat (limited to 'lisp/windmove.el')
-rw-r--r-- | lisp/windmove.el | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lisp/windmove.el b/lisp/windmove.el index 0eba97a91b7..f5589036812 100644 --- a/lisp/windmove.el +++ b/lisp/windmove.el @@ -749,7 +749,8 @@ Default value of MODIFIERS is `shift-super'." "Customisation type for windmove modifiers.") (defcustom windmove-default-keybindings nil - "Default bindings for regular windmove commands." + "Default keybindings for regular windmove commands. +See `windmove-default-keybindings' for more detail." :set (lambda (sym val) (windmove-install-defaults (car val) (cdr val) @@ -764,7 +765,8 @@ Default value of MODIFIERS is `shift-super'." :group 'windmove) (defcustom windmove-display-default-keybindings nil - "Default bindings for display windmove commands." + "Default keybindings for windmove directional buffer display commands. +See `windmove-display-default-keybindings' for more detail." :set (lambda (sym val) (windmove-install-defaults (car val) (cdr val) @@ -782,7 +784,8 @@ Default value of MODIFIERS is `shift-super'." :group 'windmove) (defcustom windmove-delete-default-keybindings nil - "Default bindings for delete windmove commands." + "Default keybindings for windmove directional window deletion commands. +See `windmove-delete-default-keybindings' for more detail." :set (lambda (sym val) (windmove-install-defaults (car val) (cdr val) @@ -797,7 +800,8 @@ Default value of MODIFIERS is `shift-super'." :group 'windmove) (defcustom windmove-swap-states-default-keybindings nil - "Default bindings for swap-state windmove commands." + "Default keybindings for windmove's directional window swap-state commands. +See `windmove-swap-states-default-keybindings' for more detail." :set (lambda (sym val) (windmove-install-defaults (car val) (cdr val) |