On Tue, 20 Sep 2011 18:45:31 -0400, Micah Anderson <mi...@riseup.net> wrote:
Non-text part: multipart/signed
> 
> I have a function to create a frame for capture mode that I can call
> with emacsclient at any time:
> 
> ;; Initialization of capture frames
> (defun make-capture-frame ()
>   "Create a new frame and run org-capture"
>   (interactive)  
>   (make-frame '((name . "capture") (width . 80) (height . 10)))
>   (select-frame-by-name "capture")
>   ;; Org-remember splits windows, force it to a single window
(let ((org-capture-mode-hook))
>   (add-hook 'org-capture-mode-hook  'delete-other-windows)
>   (org-capture)
    )
> )
Would probably work, although there may be better ways.

  Tom

Reply via email to