branch: externals/orderless
commit 234c0397bcb976cf64026e9c4d385d5b214c562a
Author: Daniel Mendler <m...@daniel-mendler.de>
Commit: Daniel Mendler <m...@daniel-mendler.de>

    orderless-kwd-alist: Sort list
---
 orderless-kwd.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/orderless-kwd.el b/orderless-kwd.el
index 6eeb4f6cb8..9d94b8b80f 100644
--- a/orderless-kwd.el
+++ b/orderless-kwd.el
@@ -54,17 +54,17 @@
 (defcustom orderless-kwd-alist
   `((ann ,#'orderless-annotation)
     (pre ,#'orderless-literal-prefix)
-    (mod ,#'orderless-kwd-mode)
+    (cat ,#'orderless-kwd-category)
     (con ,#'orderless-kwd-content)
-    (doc ,#'orderless-kwd-documentation)
     (dir ,#'orderless-kwd-directory)
-    (cat ,#'orderless-kwd-category)
+    (doc ,#'orderless-kwd-documentation)
     (grp ,#'orderless-kwd-group)
+    (mod ,#'orderless-kwd-mode)
     (val ,#'orderless-kwd-value)
+    (dif ,#'orderless-kwd-modified t)
     (key ,#'orderless-kwd-key t)
-    (on  ,#'orderless-kwd-on t)
     (off ,#'orderless-kwd-off t)
-    (dif ,#'orderless-kwd-modified t))
+    (on  ,#'orderless-kwd-on t))
   "Keyword dispatcher alist.
 The list associates a keyword with a matcher function and an
 optional boolean flag.  If the flag is non-nil, the matcher acts

Reply via email to