Re: [O] ANN: org-ql agenda block support

2019-08-30 Thread Mikhail Skorzhinskii
er too? Mikhail Skorzhinskii

[O] Multiply alerts for icalendar export

2019-09-09 Thread Mikhail Skorzhinskii
any thrid-party org to icalenadar export engines that are a bit more flexible and configurable on that matter? Mikhail Skorzhinskii

Re: [O] ANN: org-ql agenda block support

2019-09-12 Thread Mikhail Skorzhinskii
emotional moment for me, very good job, kind sir. Adam Porter writes: > Mikhail Skorzhinskii writes: > > > Adam Porter writes: > > > However, the org-ql-block version runs in about 1/5th the time (0.7 > > > seconds compared to 3.45 seconds on my collection of or

Re: Exporting agendas as org-mode files?

2019-11-13 Thread Mikhail Skorzhinskii
Adam Porter writes: > org-ql would make this pretty easy, I think. Use an org-ql query to > select entries, and for the :action function, use a simple function that > copies the entry or subtree and yanks it into a buffer. Then save that > buffer to a file. Yes, it is. Although just picki

Re: Set heading text from elisp?

2019-11-13 Thread Mikhail Skorzhinskii
I am not sure if this is exactly what you're asking, but for programatic heading edits I am using this snippet: (let ((headline-only-text (org-get-heading t t t t))) (org-edit-headline (concat "Web-page: " headline-only-text))) Probably the better way is to use org element API, but for sm

Re: Multiply alerts for icalendar export

2020-02-13 Thread Mikhail Skorzhinskii
Fraga, Eric writes: > Noting, of course, that you can have multiple time stamps (active ones > in this case) associated with a single heading. I do this every so > often. Although it would be wonderful thing to have, but it does not affect exported icalendar file. I was expecting that multiply t

Re: [O] orgmode for many continuous tasks?

2017-09-25 Thread Mikhail Skorzhinskii
Hi, Mycroft, I've tried to find/hack something similar to what you're describing. 1) Clock budgets: https://github.com/Fuco1/org-clock-budget The tool mostly about comparison your clocked time and clocking budget. But may be you find it usefull. I'm personally use this tool when I'm planning

Re: [O] orgmode for many continuous tasks?

2017-09-25 Thread Mikhail Skorzhinskii
myself and inserting them in agenda-finallize hook. I can share my code snippets if you want. Mikhail On 2017-09-25T23:28:45+0300, Mikhail Skorzhinskii wrote: >Hi, Mycroft, > >I've tried to find/hack something similar to what you're describing. > >1) Clock budgets: > >

[PATCH] org-agenda.el: agenda*: add lost argument

2021-12-25 Thread Mikhail Skorzhinskii
* lisp/org-agenda.el (org-agenda): add lost argument for agenda* ---  lisp/org-agenda.el | 4 ++--  1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 817354659..564cdd331 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -2953,7 +

[PATCH] org-agenda.el: customise outline path in echo area

2021-12-25 Thread Mikhail Skorzhinskii
* lisp/org-agenda.el (org-agenda-show-outline-path): add an option to show document title in outline path (instead of file name) * lisp/org.el (org-get-title-from-file): a function to collect the document title from the org-mode file * lisp/org.el (org-display-outline-path): add logic that will c

[PATCH] org-refile.el: show refile targets with doc. title

2021-12-25 Thread Mikhail Skorzhinskii
* lisp/org-refile.el (org-refile-use-outline-path): add an option 'title * lisp/org-refile.el (org-refile-get-targets): start refile target outline with document title (#+title) instead of file name ---  lisp/org-refile.el | 5 -  1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/li

[PATCH] ox-icalendar.el: create alarm at event time

2021-12-25 Thread Mikhail Skorzhinskii
* lisp/ox-icalendar.el (org-icalendar-force-alarm): option to set alarm even if alarm time is set to zero. * lisp/ox-icalendar.el (org-icalendar--valarm): create VALARM at the event start if the alarm time is set to zero and `org-icalendar-force-alarm' is set to true. ---  lisp/ox-icalendar.el |

[PATCH] ox-icalendar.el: customizable vevent summary prefix

2021-12-25 Thread Mikhail Skorzhinskii
* lisp/ox-icalendar.el (org-icalendar-scheduled-summary-prepend): configurable prefix for the scheduled headlines * lisp/ox-icalendar.el (org-icalendar-deadline-summary-prepend): configurable prefix for the headlines with a deadline * lisp/ox-icalendar.el (org-icalendar-entry): use a configurable

Re: [PATCH] org-refile.el: show refile targets with doc. title

2021-12-28 Thread Mikhail Skorzhinskii
h to this email. Let me know what you think. Thanks, Mikhail On Sun, 2021-12-26 at 21:59 +0800, Ihor Radchenko wrote: > Mikhail Skorzhinskii writes: > > > * lisp/org-refile.el (org-refile-use-outline-path): add an option > > 'title > > This is an interesting idea.

Re: [PATCH] org-agenda.el: customise outline path in echo area

2021-12-28 Thread Mikhail Skorzhinskii
d thus cost some CPU/IO. I've attached an updated version to this email. Would love to hear what you think. Thanks, Mikhail On Sun, 2021-12-26 at 21:44 +0800, Ihor Radchenko wrote: > Mikhail Skorzhinskii writes: > > Thanks for the patch! The addition looks reasonable to me. >

Re: [PATCH] ox-icalendar.el: customizable vevent summary prefix

2021-12-28 Thread Mikhail Skorzhinskii
> +  :group 'org-export-icalendar > > +  :type 'string) > > + > > + > > +(defcustom org-icalendar-deadline-summary-prepend "DL: " > > +  "String used for prepending summary in exported deadlines." > > +  :group 'org-export-icalendar >

Re: [PATCH] ox-icalendar.el: create alarm at event time

2021-12-28 Thread Mikhail Skorzhinskii
Sun, 2021-12-26 at 22:22 +0100, Nicolas Goaziou wrote: > Hello, > > Mikhail Skorzhinskii writes: > > > * lisp/ox-icalendar.el (org-icalendar-force-alarm): option to set > > alarm > > even if alarm time is set to zero. > > * lisp/ox-icalendar.el (org-icalen

Re: Capture with (moving) attachment?

2020-07-28 Thread Mikhail Skorzhinskii
l have separate heading. And every heading will be a link to the attached file. 3. Store this script somewhere in your $PATH #!/bin/bash # Author: Mikhail Skorzhinskii # # Description: Attach file to the org-mode file storage files= for file in "$@"; do files="${files} \"

[PATCHES 1, 2, 3/3] Minor customisation features for ox-icalendar and agenda

2020-09-15 Thread Mikhail Skorzhinskii
create alarm no matter the setting. I've updated news files and attempted to replicate the style of submissions, but I admit that I didn't read much beyond CONTRIBUTE file. Please point me to the right direction in case of any issues I can fix. Kind regards, Mi

Re: [PATCHES 1, 2, 3/3] Minor customisation features for ox-icalendar and agenda

2020-09-21 Thread Mikhail Skorzhinskii
tle) in the refile > paths may also be handy. This is indeed better way. Fixed. Thanks, Mikhail > Best, > Ihor > > Mikhail Skorzhinskii writes: > > Hello forum, > > > > I'd like to introduce three new features and request to merge the with > >

Re: [PATCHES 1, 2, 3/3] Minor customisation features for ox-icalendar and agenda

2020-09-21 Thread Mikhail Skorzhinskii
Resending the patch. There were missing parenthesis. And I didn't test build after modification. Fixed and retested. Mikhail On Monday, September 21, 2020 10:23:39 AM CEST Mikhail Skorzhinskii wrote: > On Wednesday, September 16, 2020 4:15:20 AM CEST Ihor Radchenko wrote: > > >

[PATCHES 1, 2/2 v2] ox-icalendar: add customisations for summary cookies and allow zero alarm

2020-09-21 Thread Mikhail Skorzhinskii
uggestions for agenda and for ox-icalendar. So I'm starting a separate mail thread for my suggestions. Changes since v1: - Add missing group and type to org-icalendar-*-summary-prepend defcustoms; Kind regards, Mikhail Skorzhinskii>From ecc65f713ff3efdfc40e90141dc070fc291d599f Mon Se

[PATCHES 1, 2/2] allow to use document title in agenda and refile outline paths

2020-09-21 Thread Mikhail Skorzhinskii
ine-path. Kind regards, Mikhail Skorzhinskii

Re: [PATCHES 1, 2/2] allow to use document title in agenda and refile outline paths

2020-09-21 Thread Mikhail Skorzhinskii
... and of course I forgot to attach actual patches. On Monday, September 21, 2020 3:09:58 PM CEST Mikhail Skorzhinskii wrote: > Hello everyone, > > I've already submitted these features to the mailing list: > > https://lists.gnu.org/archive/html/emacs-orgmode/2020-09/ms

Re: [PATCH] Adaptive Org faces in headings?

2020-09-21 Thread Mikhail Skorzhinskii
eywords; 5. Priority cookies; Thank you all for you work! Mikhail Skorzhinskii On Thursday, September 17, 2020 10:25:17 AM CEST Ihor Radchenko wrote: > The attached patch seems to fix the issue. > Can anyone test? > > Best, > Ihor