]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix documentation of recent 'windmove' changes
authorEli Zaretskii <eliz@gnu.org>
Fri, 4 Jun 2021 06:48:13 +0000 (09:48 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 4 Jun 2021 06:48:13 +0000 (09:48 +0300)
* lisp/windmove.el (windmove-default-keybindings)
(windmove-display-default-keybindings)
(windmove-delete-default-keybindings)
(windmove-swap-states-default-keybindings): Improve doc strings.
(Bug#41438)

* etc/NEWS: Fix a typo in the 'windmove' entry.

etc/NEWS
lisp/windmove.el

index 8b207001fe53a2f367517d882cece798ba45e99b..675925906cb8c20abde9f1cc0a133d4ba7f0fc15 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -557,8 +557,8 @@ disabled entirely.
 
 ** Windmove
 
-*** New user options can be used to customize windmove keybindings.
-There options include 'windmove-default-keybindings',
+*** New user options to customize windmove keybindings.
+These options include 'windmove-default-keybindings',
 'windmove-display-default-keybindings',
 'windmove-delete-default-keybindings',
 'windmove-swap-states-default-keybindings'.
index 0eba97a91b7e3d31603ee0a3e6e820895910b62b..f55890368123511a796ecb7d4ed220ed395f0bec 100644 (file)
@@ -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)