I’d like magit-status to open full frame, ie a single window. When I hit q to exit, I’d like my previous window configuration to be restored.

What’s the best way to do this? Setting the follow var causes it to open full frame, but removes all windows except for one upon exit:

 (setq magit-display-buffer-function
  #'magit-display-buffer-fullframe-status-v1)

I can get to my previous window layout with winner-undo, but I’d like q to do the right thing in this case.

Any thoughts?

  • 404cn@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    11 months ago

    Install package fullframe then (fullframe magit-status magit-mode-quit-window)

    Others: bind q to this function

    ```elisp

    (defun eat/quit ()

    “Delete current window switch to prevous buffer.”

    (interactive)

    (if (> (seq-length (window-list (selected-frame))) 1)

    (delete-window)

    (previous-buffer)))

    ```