branch: elpa/xah-fly-keys
commit 7b6b480626e03d008f50ff73dd60f592c7c7d6ed
Author: Xah Lee <x...@xahlee.org>
Commit: Xah Lee <x...@xahlee.org>

    xah-insert-date now use ido-completing-read instead completing-read. 
because the latter does not work when recorded as key macro, with 
fido-vertical-mode on.
---
 xah-fly-keys.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/xah-fly-keys.el b/xah-fly-keys.el
index 052112e650..d2779a0639 100644
--- a/xah-fly-keys.el
+++ b/xah-fly-keys.el
@@ -4,7 +4,7 @@
 
 ;; Author: Xah Lee ( http://xahlee.info/ )
 ;; Maintainer: Xah Lee <x...@xahlee.org>
-;; Version: 26.11.20250405204855
+;; Version: 26.11.20250409222002
 ;; Created: 2013-09-10
 ;; Package-Requires: ((emacs "28.3"))
 ;; Keywords: convenience, vi, vim, ergoemacs, keybinding
@@ -154,6 +154,7 @@
 (require 'dired)
 (require 'dired-x)
 (require 'seq)
+(require 'ido)
 
 ;; HHHH------------------------------
 
@@ -1729,7 +1730,7 @@ Version: 2025-03-07"
     (setq xstyle
           (if current-prefix-arg
               (let ((completion-ignore-case t))
-                (completing-read "Style:" xmenu nil t nil nil (caar xmenu)))
+                (ido-completing-read "Style:" xmenu nil t))
             (caar xmenu)))
     (when (region-active-p) (delete-region (region-beginning) (region-end)))
     (insert (eval (cdr (assoc xstyle xmenu))))))

Reply via email to