]> git.eshelyaron.com Git - emacs.git/commitdiff
Exclude current buffer from eww-switch-to-buffer
authorJames Thomas <jimjoe@gmx.net>
Sat, 16 Sep 2023 00:20:58 +0000 (05:50 +0530)
committerStefan Kangas <stefankangas@gmail.com>
Sun, 1 Oct 2023 16:51:18 +0000 (18:51 +0200)
* lisp/net/eww.el (eww-switch-to-buffer): Exclude current buffer from
the completion list to avoid an extra cycling keystroke.  (Bug#65914)

lisp/net/eww.el

index 4ddda216afcb8db64766b8551f1e05be0c27865f..e43ef2bfe8b60534d9e23a0be2e6201773104047 100644 (file)
@@ -2062,7 +2062,8 @@ If CHARSET is nil then use UTF-8."
   (let ((completion-extra-properties
          '(:annotation-function (lambda (buf)
                                   (with-current-buffer buf
-                                    (format " %s" (eww-current-url)))))))
+                                    (format " %s" (eww-current-url))))))
+        (curbuf (current-buffer)))
     (pop-to-buffer-same-window
      (read-buffer "Switch to EWW buffer: "
                   (cl-loop for buf in (nreverse (buffer-list))
@@ -2070,9 +2071,10 @@ If CHARSET is nil then use UTF-8."
                            return buf)
                   t
                   (lambda (bufn)
-                    (with-current-buffer
-                        (if (consp bufn) (cdr bufn) (get-buffer bufn))
-                      (derived-mode-p 'eww-mode)))))))
+                    (setq bufn (if (consp bufn) (cdr bufn) (get-buffer bufn)))
+                    (and (with-current-buffer bufn
+                           (derived-mode-p 'eww-mode))
+                         (not (eq bufn curbuf))))))))
 
 (defun eww-toggle-fonts ()
   "Toggle whether to use monospaced or font-enabled layouts."