emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/xah-fly-keys 0ac37ee7d9 1/7: xah-user-buffer-p: Add "help-


From: ELPA Syncer
Subject: [nongnu] elpa/xah-fly-keys 0ac37ee7d9 1/7: xah-user-buffer-p: Add "help-mode"
Date: Thu, 26 May 2022 03:59:01 -0400 (EDT)

branch: elpa/xah-fly-keys
commit 0ac37ee7d97a7cdd0e4d095093f94bb27cf92799
Author: Celestial Nebula <41875671+CelestialNebula@users.noreply.github.com>
Commit: GitHub <noreply@github.com>

    xah-user-buffer-p: Add "help-mode"
    
    `help-for-help-buffer-name' is " *Metahelp*" (notice the space).
---
 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 307e3b00a2..1551c75fde 100644
--- a/xah-fly-keys.el
+++ b/xah-fly-keys.el
@@ -4,7 +4,7 @@
 
 ;; Author: Xah Lee ( http://xahlee.info/ )
 ;; Maintainer: Xah Lee <xah@xahlee.org>
-;; Version: 17.9.20220516184525
+;; Version: 17.9.20220519094212
 ;; Created: 10 Sep 2013
 ;; Package-Requires: ((emacs "24.1"))
 ;; Keywords: convenience, emulations, vim, ergoemacs
@@ -2127,12 +2127,13 @@ Version: 2020-11-24 2021-07-11 2021-12-21 2022-03-26"
 Typically, if buffer name starts with *, it is not considered a user buffer.
 This function is used by buffer switching command and close buffer command, so 
that next buffer shown is a user buffer.
 You can override this function to get your idea of “user buffer”.
-Version: 2016-06-18"
+Version: 2022-05-19"
   (interactive)
   (cond
    ((string-equal "*" (substring (buffer-name) 0 1)) nil)
    ((string-equal major-mode "dired-mode") nil)
    ((string-equal major-mode "eww-mode") nil)
+   ((string-equal major-mode "help-mode") nil)
    (t t)))
 
 (defun xah-next-user-buffer ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]