Re: problem with org-map-entries and the doc for export hooks

2023-06-09 Thread Victor A. Stoichita
Le 08 Jun 2023, Ihor Radchenko a écrit : > "Victor A. Stoichita" writes: > >> I still see the problem with org version 9.6.6 and your latest example >> code. >> >> I also checked with emacs -Q which has org version 9.6.1. >> >> I’m testing

Re: problem with org-map-entries and the doc for export hooks

2023-06-07 Thread Victor A. Stoichita
Le 07 Jun 2023, Ihor Radchenko a écrit : > 1. Update Org mode. I do not see any hangs with the latest stable > Org release. > 2. Use alternative example. The current example may not work if you have >headings not separated by contents or empty lines. >See >

problem with org-map-entries and the doc for export hooks

2023-06-07 Thread Victor A. Stoichita
Greetings all! I’m trying to use the example given here in the manual for "Export hooks": https://orgmode.org/manual/Advanced-Export-Configuration.html --8<---cut here---start->8--- (defun my-headline-removal (backend) "Remove all headlines in the current

Re: org-tag-persistent-alist AND per-file dynamic tags

2021-12-09 Thread Victor A. Stoichita
Hi Chris, Le 29 Nov 2021, chris a écrit : > I use footnote 53 from https://orgmode.org/manual/Setting-Tags.html[1]. > I put my tags in `tags-file.org`, using `#+TAGS:`. > I've put the next two lines in `init.el`. > > (setq org-agenda-files (list "~/path-to/tags-file.org") >

org-tag-persistent-alist AND per-file dynamic tags

2021-11-06 Thread Victor A. Stoichita
Greetings to all, Reading the manual about setting glopal/per-file tags [1], I wonder if it is possible to use org-tag-persistent-alist AND per-file dynamic tags. When using org-set-tags-command, I’d like to select from a list comprising both: 1. the list of predefined tags in

Re: behavior of (org-insert-heading-respect-content)

2021-09-26 Thread Victor A. Stoichita
Le 18 Sep 2021, Marco Wahl a écrit : > Would be great if you could test the fix. Hi Marco! Sorry, I was unable to try it until today. I just did and It works perfectly. Thanks! Victor

Re: behavior of (org-insert-heading-respect-content)

2021-09-17 Thread Victor A. Stoichita
Le 13 Sep 2021, Marco Wahl a écrit : > As far is I see it, the intended behavior of > org-insert-heading-respect-content with point before the first heading > is to > > - insert the new heading immediately before the first heading. Respect > the content! Hi Marco ! I agree with you. But

Re: behavior of (org-insert-heading-respect-content)

2021-09-09 Thread Victor A. Stoichita
Le 09 Sep 2021, Marco Wahl a écrit : > My impression is that org-insert-heading-respect-content should be > called only with point in a subtree. > > The fix would be to signal an error when point is not located in a > subtree. > > Does this sound reasonable? In a way, yes. I guess that the

behavior of (org-insert-heading-respect-content)

2021-09-09 Thread Victor A. Stoichita
Hi, I see the following behavior which seems erroneous to me : - When I issue (org-insert-heading-respect-content) in a brand new org buffer, with point at point-min I get the error "Beginning of buffer" and no heading is inserted. - If I write something on the 1st line, say "test", but no

Re: viewing appointments while scheduling event

2021-06-04 Thread Victor A. Stoichita
I found something that seems to work. I’m posting it here in case anyone is interested or has better suggestions. First, I understood that my diary file should read: &%%(org-diary) ~/calendriers/victor.org This was clearly explained in the docstring of org-diary (if it was also in the org-mode

viewing appointments while scheduling event

2021-06-04 Thread Victor A. Stoichita
When scheduling an event with C-c C-s (org-schedule) a calendar pops up. While navigating that calendar to choose a date, is it possible to view the events already scheduled in the agenda for that date? I found this answer to a similar question:

Re: Moving some lisp/ob-*.el files to org-contrib - your advice?

2021-05-04 Thread Victor A. Stoichita
Le 04 May 2021, Bastien a écrit : >> I typically use it directly, but if the maintenance burden is >> manageable, I could offer maintenance here, too (once I have the papers >> in place). > > Thanks also for this then! > Thanks as well ! It’s good to know that knowledgeable people might care

Re: Moving some lisp/ob-*.el files to org-contrib - your advice?

2021-05-03 Thread Victor A. Stoichita
Le 03 May 2021, Bastien a écrit : > I suggest a criterium for keeping ob*.el files in Org could be that > the extension is known by Emacs _or_ that the supported language is > well-established. I happen to be an active user of ob-lilypond. Lilypond is certainly peripheral to the world of

passing variables to lilypond code blocks

2021-02-18 Thread Victor A. Stoichita
Hi, I’m trying to understand how ob-lilypond handles variables. I have the following minimal example which compiles correctly: #+begin_src lilypond :file test.png :cache no myVar = { e f g} \relative c' { a b c d \myVar } #+end_src Can I move the definition of myVar to a header argument of the

Re: strange behavior of @ in tag searches

2020-12-24 Thread Victor A. Stoichita
Le 24 Dec 2020, Ihor Radchenko a écrit : I hope the above helps. It does indeed. Thank you! Victor

Re: strange behavior of @ in tag searches

2020-12-23 Thread Victor A. Stoichita
Hmm, I tried on master (9140a712f) and maint (97f1d8e34) and can't trigger the issue. Am I overlooking some detail? Ok, I managed to narrow it down to a particular aspect of my init file. I modify the syntax table for text modes to handle the meaning of some characters in French. In

Re: strange behavior of @ in tag searches

2020-12-20 Thread Victor A. Stoichita
Hi, I’m a bit puzzled by the behavior of the agenda search when tags have hierarchical structure and start with @. I attach two minimal examples. In testfiles.org I have: --8<---cut here---start->8--- #+TAGS: [ @anthro : bib ] * my anthro task

strange behavior of @ in tag searches

2020-12-20 Thread Victor A. Stoichita
Hi, I’m a bit puzzled by the behavior of the agenda search when tags have hierarchical structure and start with @. I attach two minimal examples. In testfiles.org I have: --8<---cut here---start->8--- #+TAGS: [ @anthro : bib ] * my anthro task

Re: Reciprocal links between items

2020-10-02 Thread Victor A. Stoichita
Hi Samuel, When you say item, do you mean list item, or thing? In either case, Org cannot currently do this. That was unclear, sorry: I really meant linking two headings. I have one heading per note and the idea is to go back and forth between related notes. org-super-links promises to do

Re: Reciprocal links between items

2020-10-02 Thread Victor A. Stoichita
Le 02 Oct 2020, Ihor Radchenko a écrit : https://github.com/toshism/org-super-links is probably what you want. Yes, this looks like it! Thank you Ihor!

Re: Reciprocal links between items

2020-10-01 Thread Victor A. Stoichita
Le 01 Oct 2020, Alan Schmitt a écrit : You might want to have a look at org-roam, that implements such backlinks. Thanks Alan! That’s interesting! I watched the introductory video and started reading the org-roam docs. They begin with the rationale of Zettelkasten note taking, which

Reciprocal links between items

2020-10-01 Thread Victor A. Stoichita
Hi! I wonder whether org-mode has a way to indicate reciprocal A↔B relations between two items. If item A points to item B, then automatically B also points to A. Accordingly, when the relation is removed on A, it is also removed from B. I’m in the process of bringing my notes from Zotero

[BUG?] org-babel-lilypond-commands can't be set through customize

2020-02-10 Thread Victor A. Stoichita
Hi! In ob-lilypond the variable org-babel-lilypond-commands appears to be in a weird state. The customize interface says: org-babel-lilypond-commands: nil > [ State ]: UNKNOWN, you should not see this. > Commands to run lilypond and view or play the results. > These should be

Re: Editting from the agenda view

2019-11-26 Thread Victor A. Stoichita
Le 26 Nov 2019, Shérab a écrit : To reschedule an entry remotely from the agenda view, you can press S-right (org-agenda-do-date-later) or S-left (org-agenda-do-date-earlier). I indeed remember having seen these commands! The thing is that I am using emacs in the Linux console where

Re: Editting from the agenda view

2019-11-23 Thread Victor A. Stoichita
Le 22 Nov 2019, Shérab a écrit : When I am in an agenda view, say the weekly view, how can I edit one of the listed entries? I may want to do that either because I notice I have made a typo that I would like to fix, or because I would like to re-schedule the entry for another date. To

Re: [O] using org-mark-entry-for-agenda-action

2019-06-11 Thread Victor A. Stoichita
Le 11 Jun 2019, Kyle Meyer a écrit : "Victor A. Stoichita" writes: The manual describes the function org-mark-entry-for-agenda-action. It should "Mark the current entry for agenda action. After you have marked the entry like this, you can open the agenda or the cal

[O] using org-mark-entry-for-agenda-action

2019-06-11 Thread Victor A. Stoichita
Hi, The manual describes the function org-mark-entry-for-agenda-action. It should "Mark the current entry for agenda action. After you have marked the entry like this, you can open the agenda or the calendar to find an appropriate date. With point on the selected date, press k s or k d to

Re: [O] ordering events by hour in the agenda

2016-06-28 Thread Victor A . Stoichita
a nice day ! Victor Le 27 Jun 2016, Victor A. Stoichita <vic...@svictor.net> a écrit : I’m afraid the last part of my previous message got reformatted again by mu4e. I really need to look better into its handling of hard/newlines. Meanwhile please find attached my org config w

Re: [O] ordering events by hour in the agenda

2016-06-27 Thread Victor A . Stoichita
: application/emacs-lisp Le 27 Jun 2016, Victor A. Stoichita <vic...@svictor.net> a écrit : Your output looks very strange. This may be due to formatting of your email.In any case, can you send the org agenda files used by your agenda view? Sorry for the weird output. I’ll inves

Re: [O] ordering events by hour in the agenda

2016-06-27 Thread Victor A . Stoichita
Your output looks very strange. This may be due to formatting of your email. In any case, can you send the org agenda files used by your agenda view? Sorry for the weird output. I’ll investigate that. I made a test on a fresh file with just 4 entries. The problem seems to be that my

Re: [O] ordering events by hour in the agenda

2016-06-27 Thread Victor A . Stoichita
Your output looks very strange. This may be due to formatting of your email. In any case, can you send the org agenda files used by your agenda view? Sorry for the weird output. I’ll investigate that. I made a test on a fresh file with just 4 entries. The problem seems to be that my

[O] ordering events by hour in the agenda

2016-06-27 Thread Victor A . Stoichita
Hi, I need some help to understand the way the hour grid works in agenda displays. I read this page from the doc : [1] http://orgmode.org/manual/Time_002dof_002dday-specifications.html But my agenda doesn’t look like the examples there. Its timed events appear in seemingly random order

[O] importing tasks from .ics

2016-04-09 Thread Victor A . Stoichita
Hi, I’m new to org-mode. I’m trying to achieve synchronization of my agenda and tasks with a radicale server (caldav). So far, I’ve managed to setup pretty much everything I need, thanks to the nice doc and to various other tutorials. I still have one major issue though: importing tasks from