Re: org-attach a directory?

2021-06-10 Thread stardiviner
I want this feature patch too. Hope Org Mode can add this. I remember old version org-mode can do this. But later delete this feature? I forget what version is. I suggest to add this feature. > On Jun 8, 2021, at 11:49 PM, John Kitchin wrote: > > Is it possible to attach a directory to an

Bug: clock-in from org-agenda freezes thread when enforce + todo keywords [9.4.4 (release_9.4.4 @ /usr/local/share/emacs/28.0.50/lisp/org/)]

2021-06-10 Thread Tory S. Anderson
After long bisection and suffering for a while from this issue, I have narrowed down an issue that is breaking my workflow. I noticed that some time recently orgmode has begun freezing my system (as an exwm user, this is serious) when I attempt to clock in to certain tasks from the agenda.

Re: literate programming, development log -- ideas? (ominbus reply)

2021-06-10 Thread Samuel Banya
I actually nuke Emacs's ability to do backups with this in my config: ** Nuke Emacs' ability to make backups and autosaves since its annoying and too bloated #+BEGIN_SRC emacs-lisp (setq make-backup-files nil) (setq auto-save-default nil) #+END_SRC Reason being is that its one

Re: literate programming, development log -- ideas? (ominbus reply)

2021-06-10 Thread Samuel Wales
undo [or equivalent] in buffer. no saving to disk. emacs auto save to an auto-expiring directory emacs backups every save to an auto-expiring directory git snapshots when i feel like it. search as needed. branching in the text itself, by use of comments above if it is incoming/new and below

Re: org-attach a directory?

2021-06-10 Thread Ypo
In case you don't know it, take a look at the inheritance option for attachments. Very very very useful: You can use the same DIRectory with many subtrees without being necessary to attach the directory to each of them.

Re: org-attach a directory?

2021-06-10 Thread Juan Manuel Macías
You could also modify some line in org-attach-attach, for example: ... ((eq method 'cp) (if (file-directory-p file) (copy-directory file attach-file) (copy-file file attach-file))) ... Best regards, Juan Manuel Juan Manuel Macías writes:

Re: org-attach a directory?

2021-06-10 Thread Juan Manuel Macías
This only works when you create the attach folder manually, but not when you want org-attach to generate the attach directory for the current node. If I have to stay with a workaround that covers many scenarios, I would stay with Ihor's snippet, which seems to me simpler than the patch that I

Re: literate programming, development log -- ideas? (ominbus reply)

2021-06-10 Thread Greg Minshall
Maxim, thanks for =git log -G...=. cheers, Greg

Re: TMIO Pre-release, request for feedback

2021-06-10 Thread Jack Kamm
Hi Jeremie, Jeremie Juste writes: > Just a precision async process is already available in R. Thanks again > to Jack Kamm for this input. I believe async evaluation in R still requires my external package: https://github.com/jackkamm/ob-session-async Are you sure you don't have that package

Re: org-attach a directory?

2021-06-10 Thread Christian Barthel
On Thu, Jun 10 2021, John Kitchin wrote: > isn't that just org-attach-attach-mv? or what happens if you set > org-attach-method to mv? Ah right. I always just looked only at the *Org Attach* buffer and haven't seen a move method. The echo area lists a few more commands: it seems that doing

Re: org-attach a directory?

2021-06-10 Thread John Kitchin
isn't that just org-attach-attach-mv? or what happens if you set org-attach-method to mv? John --- Professor John Kitchin (he/him/his) Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin

Re: org-attach a directory?

2021-06-10 Thread Christian Barthel
On Thu, Jun 10 2021, Ypo wrote: > C-c C-a > > s > > (not "S" like in the video, but "s") Thanks, that is an interesting workaround: Setting the directory twice and using the copy/delete action accordingly. Does anyone know if there is a workaround to attach a file and delete the old one (or

Re: TMIO Pre-release, request for feedback

2021-06-10 Thread Jeremie Juste
Hello Timothy, On Monday, 31 May 2021 at 01:33, Timothy wrote: Many thanks for these highlights. I value them very much as even though I check this list almost everyday, I missed the thread on 'Font lock for inline export snippets'. Just a precision async process is already available in R.