]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/gnus/gnus-win.el (gnus-configure-frame): Check for window-live-p.
authorJuri Linkov <juri@linkov.net>
Sat, 30 Nov 2019 21:36:52 +0000 (23:36 +0200)
committerJuri Linkov <juri@linkov.net>
Sat, 30 Nov 2019 21:36:52 +0000 (23:36 +0200)
* doc/misc/gnus.texi (Tabbed Interface): New node.  (bug#37998)

doc/misc/gnus.texi
lisp/gnus/gnus-win.el

index e43aa92c99787faa5da2d9d485db254fba64fa95..d563d52d58da8d673b24a74cc07bdc3d6d47a4c5 100644 (file)
@@ -813,6 +813,7 @@ Various
 * Symbolic Prefixes::           How to supply some Gnus functions with options.
 * Formatting Variables::        You can specify what buffers should look like.
 * Window Layout::               Configuring the Gnus buffer windows.
+* Tabbed Interface::            Configuring the Gnus tabs.
 * Faces and Fonts::             How to change how faces look.
 * Mode Lines::                  Displaying information in the mode lines.
 * Highlighting and Menus::      Making buffers look all nice and cozy.
@@ -22189,6 +22190,7 @@ to you, using @kbd{G b u} and updating the group will usually fix this.
 * Symbolic Prefixes::           How to supply some Gnus functions with options.
 * Formatting Variables::        You can specify what buffers should look like.
 * Window Layout::               Configuring the Gnus buffer windows.
+* Tabbed Interface::            Configuring the Gnus tabs.
 * Faces and Fonts::             How to change how faces look.
 * Mode Lines::                  Displaying information in the mode lines.
 * Highlighting and Menus::      Making buffers look all nice and cozy.
@@ -22985,6 +22987,36 @@ between summary buffer (top one-sixth) and article buffer (bottom).
 @end itemize
 
 
+@node Tabbed Interface
+@section Tabbed Interface
+@cindex tabbed interface
+@cindex tabs
+
+Gnus supports display of different buffers in dedicated tabs
+that you can select using the tab bar.
+
+To open the group buffer in a new tab named @samp{Gnus}, use:
+
+@lisp
+(push '("\\`\\*Group\\*\\'" .
+        (display-buffer-in-tab
+         (name . "Gnus")))
+      display-buffer-alist)
+@end lisp
+
+To read every summary in a separate explicitly named tab, use:
+
+@lisp
+(push '("\\`\\*Summary .*\\*\\'" .
+        (display-buffer-in-tab
+         (name . (lambda (buffer _alist)
+                   (setq buffer (buffer-name buffer))
+                   (when (string-match "\\`\\*Summary \\(.*\\)\\*\\'" buffer)
+                     (format "Group %s" (match-string 1 buffer)))))))
+      display-buffer-alist)
+@end lisp
+
+
 @node Faces and Fonts
 @section Faces and Fonts
 @cindex faces
index b39c9faab6cc5ae38f81ddd1b376f353871cb0ce..81b3437fc58c3e3d3d748f059acb758d926383fe 100644 (file)
@@ -367,11 +367,14 @@ See the Gnus manual for an explanation of the syntax used.")
            (setq result (or (gnus-configure-frame
                              (car comp-subs) window)
                             result))
-           (select-window new-win)
-           (setq window new-win)
+            (if (not (window-live-p new-win))
+                ;; pop-to-buffer might have deleted the original window
+                (setq window (selected-window))
+              (select-window new-win)
+             (setq window new-win))
            (setq comp-subs (cdr comp-subs))))
        ;; Return the proper window, if any.
-       (when result
+       (when (window-live-p result)
          (select-window result)))))))
 
 (defvar gnus-frame-split-p nil)