branch: elpa/devil
commit edc71d41cb97cc8ec356a29364e14158a05ef70c
Author: Susam Pal <su...@susam.net>
Commit: Susam Pal <su...@susam.net>

    Add M-h, C-x [, etc. to repeatable key sequences
---
 CHANGES.org |  4 ++++
 devil.el    | 18 +++++++++++-------
 2 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/CHANGES.org b/CHANGES.org
index a5faa40be5..c998e2e380 100644
--- a/CHANGES.org
+++ b/CHANGES.org
@@ -10,6 +10,10 @@
 *** Added
 
 - Repeatable key sequence =, m e=.
+- Repeatable key sequence =, m h=.
+- Repeatable key sequence group for =, x [= and =, x ]=.
+- Repeatable key sequence group for =, x ^=, =, x {=, and =, x }=.
+- Repeatable key sequence =, x u=.
 
 *** Changed
 
diff --git a/devil.el b/devil.el
index 53014c7ee0..20a7d7d1b7 100644
--- a/devil.el
+++ b/devil.el
@@ -4,7 +4,7 @@
 
 ;; Author: Susam Pal <su...@susam.net>
 ;; Maintainer: Susam Pal <su...@susam.net>
-;; Version: 0.7.0-beta1
+;; Version: 0.7.0-beta2
 ;; Package-Requires: ((emacs "24.4"))
 ;; Keywords: convenience, abbrev
 ;; URL: https://github.com/susam/devil
@@ -163,16 +163,20 @@ by `devil-format' may be used in the keys and values."
   :type '(alist :key-type string :value-type string))
 
 (defcustom devil-repeatable-keys
-  '(("%k p" "%k n" "%k f" "%k b")
+  '(("%k /")
     ("%k d")
     ("%k k")
-    ("%k s")
-    ("%k /")
-    ("%k m f" "%k m b")
+    ("%k m ^")
     ("%k m e")
+    ("%k m f" "%k m b")
+    ("%k m h")
     ("%k m y")
-    ("%k m ^")
-    ("%k x o"))
+    ("%k p" "%k n" "%k f" "%k b")
+    ("%k s")
+    ("%k x [" "%k x ]")
+    ("%k x ^" "%k x {" "%k x }")
+    ("%k x o")
+    ("%k x u"))
   "Devil mode repeatable key sequences arranged in groups.
 
 The value of this variable is a list of lists.  Each item (each

Reply via email to