From 90b6b364bb372354deb32463a9a259ac9a16da7f Mon Sep 17 00:00:00 2001 From: Vasilij Schneidermann Date: Wed, 6 Jul 2016 10:51:07 +0200 Subject: [PATCH] Add notes section Closes #52 --- README.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.rst b/README.rst index 63ea131..4595ed1 100644 --- a/README.rst +++ b/README.rst @@ -119,6 +119,23 @@ structure for you and does it in a slightly different manner (see allow for features like persistency in combination with `desktop.el `_. +Notes +----- + +The ``window-state-put`` and ``window-state-get`` functions do not +save all window parameters. If you use features like side windows +that store the window parameters ``window-side`` and ``window-slot``, +you will need to customize ``window-persistent-parameters`` for them +to be saved as well: + +.. code:: elisp + + (add-to-list 'window-persistent-parameters '(window-side . writable)) + (add-to-list 'window-persistent-parameters '(window-slot . writable)) + +See `#52 `_ for +further discussion. + Contributing ------------