apc
apc
Setting `delete-by-moving-to-trash` to `t` keeps me from deleting files, but only in `org-directory`
Setting `mac-system-move-file-to-trash-use-finder` to `t` seems to solve the problem. So: replacing ``` (setq-default delete-by-moving-to-trash t) ``` with ``` (setq-default delete-by-moving-to-trash t) (setq-default mac-system-move-file-to-trash-use-finder t) ``` yields the desired behavior. Still...
Sorry, I should have been clearer. The problem I think is due to the fact that `consult` (or is it `embark-consult`?) inserts these separators between different consult sources, which get...
I take it the problem is that AUCTeX is now on version 14, so `latex-extra` is still `require`-ing `tex-buf`, which it was supposed not to since [this commit](https://github.com/Malabarba/latex-extra/commit/a81e7588448f85c5fcc3f3fc71cf957d0928a656). There's a...
I don't feel competent enough to suggest a patch, but I'm thinking something like this minimal fix might suffice? ```lisp (defun org-ql-refile (marker) "Refile current entry to MARKER (interactively, one...
Would this be better? ```elisp (defun org-ql-refile (marker) "Refile current entry to MARKER (interactively, one selected with `org-ql'). Interactive completion uses files listed in `org-refile-targets', which see (but only the...