From 368ea2f56812169e2e7c30fb2c7ba8572198cd28 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Wed, 14 Dec 2022 22:38:35 +0200 Subject: [PATCH] mu4e-window: mention mu4e-split-view cannot be a function mu4e-split-view can no longer be a function; update the documentation. --- mu4e/mu4e-window.el | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/mu4e/mu4e-window.el b/mu4e/mu4e-window.el index c8fc838b..1e2d77ae 100644 --- a/mu4e/mu4e-window.el +++ b/mu4e/mu4e-window.el @@ -63,12 +63,15 @@ A symbol which is either: * `vertical': split vertically (headers on the left). * `single-window': view and headers in one window (mu4e will try not to touch your window layout), main view in minibuffer - * a function: the function is responsible to return some window for - the view. * anything else: don't split (show either headers or messages, not both). -Also see `mu4e-headers-visible-lines' -and `mu4e-headers-visible-columns'." + +Also see `mu4e-headers-visible-lines' and +`mu4e-headers-visible-columns'. + +Note that in older mu4e version, the value could also be +function; this is no longer supported; instead you can use +`display-buffer-alist'." :type '(choice (const :tag "Split horizontally" horizontal) (const :tag "Split vertically" vertical) (const :tag "Single window" single-window)