In Emacs org-mode, how do I get org-capture to open in a full-sized window?

emacs, org-mode

Solution

You can add `(add-hook 'org-capture-mode-hook 'delete-other-windows)` or `(add-hook 'org-capture-mode-hook 'make-frame)` to your `.emacs`. (To test, you can eval these with `M-:`). The first should delete the other windows, the second opens the window in a new frame. However these work after you select the capture template.

Problem

In Emacs org-mode, how do I get org-capture to open in a full-sized window, rather than first splitting the window ?

Original source