Re: emacs build command for org-files

2020-01-26 Thread briangpowell .
"Actually, if it was possible to get M-x compile to run an elisp function instead of a make file, it might be all I need, but it looks like it runs shell commands." You probably know this but just in case: "You can call simulate an EmacsLisp-based script by putting this in a batch script: emacs

Re: [PATCH] Fix several issues with python session value blocks

2020-01-26 Thread Jack Kamm
> thanks for your patch - Kyle is on it, but IIRC we do not have a > maintainer for the ob-python.el file. > > Would you like to take this in charge? Or someone else? Sure, I would be interested in this, if it's helpful. I need an account for code.orgmode.org, and whatever commit permissions

org id update locations search sequence (was Re: bug report org mode)

2020-01-26 Thread Samuel Wales
i have been wondering about the search sequence for this function. id updating is capable of being quite slow, which can be distracting when you follow a link and emacs hangs for a while, so i was thinking maybe this could be optimized. idk about data structures and searching, but i think the

Re: emacs build command for org-files

2020-01-26 Thread John Kitchin
On Sun, Jan 26, 2020 at 2:39 PM briangpowell . wrote: > "don't want it to necessarily use Makefiles" > > Why the hey not Dr. Kitchin!? > 1. I like all the build code in one file that also contains the document I am building. I know I could put a makefile in a src block and tangle it before

Re: emacs build command for org-files

2020-01-26 Thread briangpowell .
"don't want it to necessarily use Makefiles" Why the hey not Dr. Kitchin!? Make is an extremely powerful language Problem is people make makefiles that are often hard for others to read--suggest you try hard to keep it simple & avoid the fancy ways of doing things Make has flow control & is a

Re: automatic completion of file tags

2020-01-26 Thread Alan Schmitt
Hi Bastien, On 2020-01-26 18:04, Bastien writes: > I'm not entirely sure: you want to tag all headline in a file with > multiple pre-defined tags? There are no headlines in the file (it's a small note). I want to tag the file itself (or its content). It's mostly to help with full-text search

Re: Issue with internal directory links

2020-01-26 Thread Bastien
Hi Jonathan, Jonathan Fox writes: > Here's a link I'm using: > > [[./templates][Templates]] You can try adding (directory . emacs) to `org-file-apps' in your configuration like this: (setq org-file-apps '((auto-mode . emacs) (directory . emacs) ("\\.mm\\'" . default)

emacs build command for org-files

2020-01-26 Thread John Kitchin
Hi everyone, This is only semi-on-topic. I am looking for something like M-x compile for my org-files, but I don't want it to necessarily use Makefiles. I am looking for suggestions of existing solutions to this, or thoughts on how to implement this. Actually, if it was possible to get M-x

Re: Bug: org-attach dispatcher has no obvious way to scroll it [9.3 (9.3-8-geab7c4-elpaplus @ /home/lockywolf/.emacs.d/elpa/org-plus-contrib-20191209/)]

2020-01-26 Thread Bastien
Hi Vladimir, I fixed this in the master branch. Thanks, -- Bastien

Re: Bug? Multi day event with times

2020-01-26 Thread Jude DaShiell
On Sun, 26 Jan 2020, Detlef Steuer wrote: > Date: Sun, 26 Jan 2020 12:49:55 > From: Detlef Steuer > To: emacs-orgmode@gnu.org > Cc: Bastien > Subject: Re: Bug? Multi day event with times > > Am Sun, 26 Jan 2020 18:14:25 +0100 > schrieb Bastien : > > > Hi Detlef, > > > > Detlef Steuer writes: >

Re: Bug? Multi day event with times

2020-01-26 Thread Detlef Steuer
Am Sun, 26 Jan 2020 18:14:25 +0100 schrieb Bastien : > Hi Detlef, > > Detlef Steuer writes: > > > Stumbled upon this: > > > > ( emacs 26.3, org-contrib-plus 20191118, linux) > > > > In my orgfile I have: > > ** some travel > ><2020-01-30 Do 10:00>-<2020-02-01 Sa 16:00> > > > > In the

Re: Bug? Multi day event with times

2020-01-26 Thread Bastien
Hi Detlef, Detlef Steuer writes: > Stumbled upon this: > > ( emacs 26.3, org-contrib-plus 20191118, linux) > > In my orgfile I have: > ** some travel ><2020-01-30 Do 10:00>-<2020-02-01 Sa 16:00> > > In the agenda that is shown as: > Donnerstag 30 January 2020 > unsorted: 10:00-11:00

Re: bug report org mode

2020-01-26 Thread Bastien
Hi Siegmar, Siegmar Maier writes: > According to my examination the problem is with > org-id-update-id-locations. Removeing that column makes it work > again. > If I put that line behind it works also again Yes, `org-todo-keyword-faces' will be taken into account when set before any actual

Re: automatic completion of file tags

2020-01-26 Thread Bastien
Hi Alan, > I'm playing with an implementation of Zettelkasten using deft and org > files, and I want to tag each note with some tags taken from a list (I'm > using the ~#FILETAGS:~ line for that at the moment). Is there a builtin > org way of doing it (have a list of tags defined somewhere and

Re: Bug: [[info:org#Org Mobile]] should mention org-tag-persistent-alist [9.3.1 (9.3.1-elpaplus @ /home/jorge/.emacs.d/elpa/26.3/develop/org-plus-contrib-20191230/)]

2020-01-26 Thread Bastien
Hi Jorge, jorge+l...@disroot.org (Jorge P. de Morais Neto) writes: > Hi. I believe [[info:org#Org Mobile]] should mention > org-tag-persistent-alist, saying whether it is examined or not. Yes, it is examined through the use of `org-global-tags-completion-table'. I mentioned it in the manual,

Re: org-show-notification of org-clock.el broken on MS Windows

2020-01-26 Thread Bastien
Hi Tim, thanks for the detailed information and the patch. I've pushed a change on the master branch that should make notifications usable on W32 systems. Can you test and see if it works for you? Thanks! -- Bastien

Re: [PATCH] Fix several issues with python session value blocks

2020-01-26 Thread Bastien
Hi Jack, thanks for your patch - Kyle is on it, but IIRC we do not have a maintainer for the ob-python.el file. Would you like to take this in charge? Or someone else? Thanks, -- Bastien

Re: preview src blocks that generate image files

2020-01-26 Thread John Kitchin
How would you handle source blocks that generate many figures? In iPython, for example this happens pretty easily. I guess you are thinking about blocks with a :file output or something though? Once a preview was on it, would you have to C-c C-x C-v to toggle it off to edit it? I have explored a

Re: org-show-notification of org-clock.el broken on MS Windows

2020-01-26 Thread Tim Schumacher
Hi Bastien, On Sun, 26 Jan 2020 10:12:40 +0100, Bastien wrote: > > * The function org-show-notification should be more robust. It should not > > fail > > if it can't fire a notification for whatever reason. > > Please send a patch if needed for this. I tried my best, check the attachedd

Org 9.3.2

2020-01-26 Thread Bastien
Hi all, Org 9.3.2, a bugfix release, is out. Enjoy! -- Bastien

Re: org-indent-mode documentation suggestion

2020-01-26 Thread Bastien
Hi Neil, Neil Hansen writes: > That looks great, thank you for addressing this so quickly. As > always, very impressed with your leadership of the org project.  Well, thanks, but that's just me doing a few contributions after a long time being away. The true everyday leadership is that of

Re: org-indent-mode documentation suggestion

2020-01-26 Thread Neil Hansen
Hi Bastien, That looks great, thank you for addressing this so quickly. As always, very impressed with your leadership of the org project. Looking forward to the next release! Neil On Sun., Jan. 26, 2020, 12:00 a.m. Bastien, wrote: > Hi Neil, > > thanks for reporting this - I enhanced the

Re: preview src blocks that generate image files

2020-01-26 Thread Fraga, Eric
On Sunday, 26 Jan 2020 at 00:11, Matt Huszagh wrote: > Is anyone else interested in this feature? Any general thoughts/feature > requests? This sounds quite appealing. The only issue might be the need to be able to distinguish between images that are purely there because of a link and those that

Re: org-show-notification of org-clock.el broken on MS Windows

2020-01-26 Thread Bastien
Hi Tim, > * The function org-show-notification should be more robust. It should not fail > if it can't fire a notification for whatever reason. Please send a patch if needed for this. > * On MS Windows the function w32-notification-notify should be used. I just fixed this one:

preview src blocks that generate image files

2020-01-26 Thread Matt Huszagh
Hi, I'm considering adding the ability to display an image preview overlay of source blocks that generate an image file, much in the same way that latex fragments can be previewed. Is anyone else interested in this feature? Any general thoughts/feature requests? Matt

Re: org-indent-mode documentation suggestion

2020-01-26 Thread Bastien
Hi Neil, thanks for reporting this - I enhanced the documentation like this: https://code.orgmode.org/bzg/org-mode/commit/c6a34dc0 Let me know if this solves it for you. Best, -- Bastien