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

    swapped the keys for end-of-buffer (new key  space ; ) and save-buffer (new 
key  space n ). (both qwerty notation) reason: this is to be consistent with 
the command mode key for xah-end-of-line-or-block. the reason it was not before 
is because i was just picking the dvorak s for save-buffer.
---
 xah-fly-keys.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/xah-fly-keys.el b/xah-fly-keys.el
index 75a87b1183..2f4449de32 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: 27.3.20250711064044
+;; Version: 27.4.20250711122556
 ;; Created: 2013-09-10
 ;; Package-Requires: ((emacs "28.3"))
 ;; Keywords: convenience, vi, vim, ergoemacs, keybinding
@@ -3261,10 +3261,10 @@ Version: 2022-10-22")
 (if xah-fly-key-current-layout nil (setq xah-fly-key-current-layout "qwerty"))
 
 (defvar xah-fly--key-convert-table nil
-  "A alist that's the conversion table from dvorak to current layout.
+  "A hashtable that's the conversion table from dvorak to current layout.
 Value is a hashtable.
 Created: 2019-02-12
-Version: 2024-04-22" )
+Version: 2025-07-11" )
 
 (setq
  xah-fly--key-convert-table
@@ -3401,7 +3401,7 @@ Version: 2024-04-22"
        ;; `
 
        ("a" . mark-whole-buffer)
-       ("b" . end-of-buffer)
+       ("b" . save-buffer)
 
        ("c ," . xah-open-in-external-app)
        ("c ." . find-file)
@@ -3645,7 +3645,7 @@ Version: 2024-04-22"
        ("r y" . delete-whitespace-rectangle)
        ("r z" . nil)
 
-       ("s" . save-buffer)
+       ("s" . end-of-buffer)
 
        ;; most frequently used
        ("t <up>"  . xah-move-block-up)

Reply via email to