Re: [O] FW: [RFC] Link-type for attachments, more attach options

2018-11-02 Thread Gustav Wikström
Hi Marco, Nice to hear you like it! Yeah, I'm pretty happy with that functionality as well. Use it all the time to quickly add links to attached files. One use case I have for this (as an example) is for projects and tasks. I have a 'tasks.org' file with nodes for each of my tasks and each of

Re: [O] Help with sharing emacs-org presentation

2018-11-02 Thread Feiming Chen
Thanks, Jens, for your comment! I understand your point of view! My point is that Org mode is not ubiquitous and most people (esp. non-programmers) do not use emacs. But I do concur that Org mode is great for collaboration IF a team can agree to using it. Thanks for your interesting

Re: [O] FW: [RFC] Link-type for attachments, more attach options

2018-11-02 Thread Ihor Radchenko
Hi Gustav, Thanks for the patch! I am a heavy user of org attachments, so it is pleasant that someone spent a time to implement this useful feature into org. A comment regarding the code. Your new link types appears to reimplement some of the code for the "file:" links. Would it make more sense

Re: [O] FW: [RFC] Link-type for attachments, more attach options

2018-11-02 Thread Gustav Wikström
Hi, nice to hear that you find it useful! I don’t have access to apply the patch myself. So I’d be happy if one of the frequent maintainers could help out with that, and at the same time look a bit at the quality of it. I’ve used most of the functionality personally for well over a year in my

Re: [O] Display-level automatic subtree numbering

2018-11-02 Thread Marco Wahl
NICOLAS> As I was offline for a few days, I toyed a bit with this. I NICOLAS> wrote the following library. I didn't test it thoroughly. I NICOLAS> didn't write regression tests either. ERIC> Although I probably won't use this often, I have tried it out ERIC> and it seems to

Re: [O] Display-level automatic subtree numbering

2018-11-02 Thread Eric S Fraga
On Thursday, 1 Nov 2018 at 18:49, Nicolas Goaziou wrote: > As I was offline for a few days, I toyed a bit with this. I wrote the > following library. I didn't test it thoroughly. I didn't write > regression tests either. Although I probably won't use this often, I have tried it out and it seems

[O] dynamic block :block thismonth seems not correct

2018-11-02 Thread stardiviner
I have this two dynamic block: ``` ** REPEAT Weekly Org-Agenda Review :fragment: SCHEDULED: <2018-11-03 Sat .+1w> :PROPERTIES: :LAST_REPEAT: [2018-10-27 Sat 16:09] :END: :LOGBOOK: - State "DONE" from "REPEAT" [2018-10-27 Sat 16:09] - State "DONE" from "REPEAT"

Re: [O] [PATCH] org-attach: Allow attaching file from visited buffer

2018-11-02 Thread Nicolas Goaziou
Hello, Eric Danan writes: > Sorry for the slow reply. Sorry for the even slower reply. > I tried something similar to your second proposal (mimicking > `org-attach-dired-to-subtree'), but more convenient in my opinion and > not losing the method choice. It mimicks the mechanism to store

Re: [O] [PATCH] org-attach: Allow attaching file from visited buffer

2018-11-02 Thread Eric Danan
Hello, I eventually added, in "next" branch (Org 9.3), something much simpler. Pressing from the attach dispatcher offers to choose a buffer from the list of active buffers, and save its contents to a file in the attachment directory. Does it suit your needs? Yes, thanks. It could make

Re: [O] Bug: Org Table Performance Issue/Regression

2018-11-02 Thread Tim Baumgard
> On Sep 3, 2018, at 2:59 AM, Nicolas Goaziou wrote: > > I think master branch behaves better now. Could you confirm it? It behaves better and is usable again. It's still not quite as fast as version 8.2.10 that came with Emacs 25.3, but I think I’m using Org tables in an atypical way and

Re: [O] coderef does not provide file path for org-insert-link when not in original buffre

2018-11-02 Thread stardiviner
Nicolas Goaziou writes: >> --- >> lisp/org-src.el | 9 - >> lisp/org.el | 9 ++--- >> 2 files changed, 14 insertions(+), 4 deletions(-) >> >> diff --git a/lisp/org-src.el b/lisp/org-src.el >> index 42e1225ed..0426ff96a 100644 >> --- a/lisp/org-src.el >> +++ b/lisp/org-src.el >

Re: [O] Bug: Capture template insertion fails with #+FOO [9.1.14 (9.1.14-1-g4931fc-elpa @ /home/phil/.emacs.d/elpa/org-9.1.14/)]

2018-11-02 Thread Philip Hudson
On Fri, 2 Nov 2018 at 01:35, Nicolas Goaziou wrote: > > Philip Hudson writes: > > > Here's a minimal failing capture-completed template: > > > > --- Cut here -- > > > > #+FOO: bar > > > > * Baz > > -- Cut here -- > > I would like to see you capture template in its elisp form,

Re: [O] Full-width characters break column display

2018-11-02 Thread Leo Gaspard
Nicolas Goaziou writes: > The problem is that > > (string-width "何か") > > equals > > (string-width "") > > i.e, 4 characters, but both strings do not have the same length > visually. > > As long as the two sexps above disagree, it seems difficult to support > this. Oh. OK, so now I feel