You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It works great except for when I tried to use org-capture which in turn calls make-indirect-buffer which is a native Emacs function.
If you set mini-modeline-display-gui-line to t you can reproduce the error by eval'ing:
;; Either open a file named `inbox.org' or change `inbox.org' to the name of a buffer you already have open..."
(make-indirect-buffer (get-buffer"inbox.org") "CAPTURE-inbox.org"'clone)
(defunmy/org-capture (&optionalgotokeys)
"Wrap `org-capture' to handle issue with `mini-modeline'."
(interactive"P")
;; mini-modeline modifies face-remapping-alist which causes problems when;; functions such as org-capture call make-indirect-buffer. Below we set;; face-remapping-alist temporarily while org-capture is executed.
(let ((face-remapping-alistnil))
(org-capture goto keys)))
Thanks for the cool package!
It works great except for when I tried to use
org-capture
which in turn callsmake-indirect-buffer
which is a native Emacs function.If you set
mini-modeline-display-gui-line
tot
you can reproduce the error by eval'ing:You should get the following error:
The error originates from this block of code.
The text was updated successfully, but these errors were encountered: