branch: elpa/xah-fly-keys commit dde894b22c2ec68767979e96d24aa9aa57ef5169 Author: Xah Lee <x...@xahlee.org> Commit: Xah Lee <x...@xahlee.org>
key change. shell-command is now [space n g], was [n 9]. shell-command-on-region is now [space n f], was and [n 0]. reason: trying to reduce using the digit keys, because i find that for touch typers, they are not ergonomic. also on a lot new ergo keyboard in past 10 years, digit keys require combination. --- xah-fly-keys.el | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/xah-fly-keys.el b/xah-fly-keys.el index fe834216c9..f38c3d4548 100644 --- a/xah-fly-keys.el +++ b/xah-fly-keys.el @@ -2127,8 +2127,6 @@ Version: 2024-10-02" ;; HHHH------------------------------ ;; misc - - (defun xah-user-buffer-p () "Return t if current buffer is a user buffer, else nil. A user buffer has buffer name NOT starts with * or space, and is not dired mode, help mode, etc. @@ -3533,8 +3531,8 @@ Version: 2024-04-22" ("n 4" . global-display-line-numbers-mode) ("n 6" . calendar) ("n 7" . calc) - ("n 9" . shell-command) - ("n 0" . shell-command-on-region) + ("n 9" . nil) + ("n 0" . nil) ("n <up>" . xah-page-up) ("n <down>" . xah-page-down) @@ -3544,8 +3542,8 @@ Version: 2024-04-22" ("n c" . toggle-case-fold-search) ("n d" . display-line-numbers-mode) ("n e" . eshell) - ;; ("n f" . nil) - ;; ("n g" . nil) + ("n f" . shell-command-on-region) + ("n g" . shell-command) ("n h" . widen) ("n i" . make-frame-command) ("n j" . flyspell-buffer)