aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d/rul-lisp/packages/rul-wm.el
diff options
context:
space:
mode:
authorRaúl Benencia <id@rbenencia.name>2024-10-13 09:51:00 -0700
committerRaúl Benencia <id@rbenencia.name>2024-10-13 09:51:00 -0700
commit5d899172042be1174df1f22a50d765270c229bbd (patch)
tree1f4a72caa6d509425c988bed28ace7566f8f4314 /.emacs.d/rul-lisp/packages/rul-wm.el
parent338532f19c121026c57d34761d13f8f8d1781fd1 (diff)
emacs: use prot's popups to bind org-capture in Gnome
Diffstat (limited to '.emacs.d/rul-lisp/packages/rul-wm.el')
-rw-r--r--.emacs.d/rul-lisp/packages/rul-wm.el32
1 files changed, 32 insertions, 0 deletions
diff --git a/.emacs.d/rul-lisp/packages/rul-wm.el b/.emacs.d/rul-lisp/packages/rul-wm.el
index cea3a76..59fc2f4 100644
--- a/.emacs.d/rul-lisp/packages/rul-wm.el
+++ b/.emacs.d/rul-lisp/packages/rul-wm.el
@@ -23,6 +23,38 @@
(set-face-attribute 'tab-bar nil :height 0.8)
(tab-bar-mode 1)
+;; Pop-up buffers
+;; https://protesilaos.com/codelog/2024-09-19-emacs-command-popup-frame-emacsclient/
+(defun prot-window-delete-popup-frame (&rest _)
+ "Kill selected selected frame if it has parameter `prot-window-popup-frame'.
+Use this function via a hook."
+ (when (frame-parameter nil 'prot-window-popup-frame)
+ (delete-frame)))
+
+(defmacro prot-window-define-with-popup-frame (command)
+ "Define interactive function which calls COMMAND in a new frame.
+Make the new frame have the `prot-window-popup-frame' parameter."
+ `(defun ,(intern (format "prot-window-popup-%s" command)) ()
+ ,(format "Run `%s' in a popup frame with `prot-window-popup-frame' parameter.
+Also see `prot-window-delete-popup-frame'." command)
+ (interactive)
+ (let ((frame (make-frame '((prot-window-popup-frame . t)))))
+ (select-frame frame)
+ ;; Placeholder for frame, otherwise it'll get autoclosed.
+ (switch-to-buffer " prot-window-hidden-buffer-for-popup-frame")
+ (condition-case nil
+ (call-interactively ',command)
+ ((quit error user-error)
+ (delete-frame frame))))))
+
+(declare-function org-capture "org-capture" (&optional goto keys))
+(defvar org-capture-after-finalize-hook)
+
+;;;###autoload (autoload 'prot-window-popup-org-capture "prot-window")
+(prot-window-define-with-popup-frame org-capture)
+
+(add-hook 'org-capture-after-finalize-hook #'prot-window-delete-popup-frame)
+
(use-package olivetti
:ensure t
:defer t
nihil fit ex nihilo