Re: Bug: org-agenda-todo applied to wrong line item [9.1.9 (release_9.1.9-65-g5e4542 @ /usr/share/emacs/26.1/lisp/org/)]

2020-08-17 Thread Kyle Meyer
Dinnyés Dániel writes: > I have tried reproducing it with a minimal example, and this seems to work > for me: > > * FOO > ** TODO baz1 > SCHEDULED: <2020-08-16 Sun> > > some text > > * BAR > ** TODO baz2 > SCHEDULED: <2020-08-16 Sun> > *** DONE baz3 > SCHEDULED: <2020-08-16 Sun> > *** TODO baz4 >

Re: Bug: org-set-tags-command deletes inherited tags [9.3.7 (9.3.7-18-g093b47-elpaplus @ /home/ionasal/.emacs.d/elpa/org-plus-contrib-20200810/)]

2020-08-18 Thread Kyle Meyer
Thanks for the patch. Allen Li writes: > Example Org file: > > * Parent :foo:bar:baz: > ** Child :foo:bar:spam: > > Invoking org-set-tags-command with point on Child prepopulates the > minibuffer prompt with only the tags :spam: > > This is because org-get-tags doesn't distinguish between inherit

Re: [BUG] babel runs bash instead of zsh when sessions are used

2020-08-21 Thread Kyle Meyer
Rudi C writes: > #+BEGIN_SRC zsh :session z1 > echo $HOME $0 > #+END_SRC > > #+RESULTS: > : /Users/evar /bin/bash What version of Org are you using? I tried with both the latest release (9.3.7) and the current master branch (220f2b0d9), using default configuration aside from (org-babel-do-l

Re: [bug] deleting backward char does not do undo-boundary

2020-08-21 Thread Kyle Meyer
Samuel Wales writes: > here is my code to try to fix it [note that i fix teh rest of emacs 25 > also]. but that one command does not accept the undo-boundary that i > call. i do not udnerstand why this is the case. Without looking at this too closely, I'd guess it's because ... > (define-key

Re: Bug: Total shown clocked time of inlinetask includes the clocking of the parent task [9.3.7 (release_9.3.7-783-gd307b6 @ /home/yantar92/.emacs.d/straight/build/org/)]

2020-08-21 Thread Kyle Meyer
Ihor Radchenko writes: > I have noticed that total clocked time shown while clocked-in into > inlinetask includes the clocked time of its parent task. > > Expected behaviour: only the clocking time for the inline task itself > should be shown. > > This can be fixed if org-clock-sum-current-item co

Re: using completion on header name to insert link

2020-08-21 Thread Kyle Meyer
Samuel Wales writes: > i frequently use refile with ido to refile to and go to entries. > > is there a command to use the same completion to insert a link at point? > > for example, if i have an entry named pharmacy, and it has an org id, > i can refile to it or go to it using ido. > > but can i b

Re: [bug] deleting backward char does not do undo-boundary

2020-08-21 Thread Kyle Meyer
Samuel Wales writes: > ah, so org did the remap and i tried to remap the remap? Yes, with the standard value for org-mode-map, here's what describe-variable (C-h v) says: (remap keymap ... (delete-backward-char . org-delete-backward-char)

Re: Bug: org-set-tags-command deletes inherited tags [9.3.7 (9.3.7-18-g093b47-elpaplus @ /home/ionasal/.emacs.d/elpa/org-plus-contrib-20200810/)]

2020-08-23 Thread Kyle Meyer
Allen Li writes: > Attached new patch Thanks. Applied in 76da93aa8, adding periods to the end of the changelog entries.

Re: Bug: Total shown clocked time of inlinetask includes the clocking of the parent task [9.3.7 (release_9.3.7-783-gd307b6 @ /home/yantar92/.emacs.d/straight/build/org/)]

2020-08-23 Thread Kyle Meyer
Ihor Radchenko writes: > See the attached. Let me know if anything is missing. Thanks. Applied in 7b657c50e, with code on top to silence the byte-compiler.

Re: [BUG] babel runs bash instead of zsh when sessions are used

2020-08-24 Thread Kyle Meyer
Nick Dokos writes: > I was able to reproduce it (with ksh, rather than zsh) on Org mode version > 9.3.7 (release_9.3.7-705-gea9463 @ /home/nick/elisp/org-mode/lisp/). > > --8<---cut here---start->8--- > #+BEGIN_SRC ksh :session z1 > echo $HOME $0 $(which $0) >

Re: Bug: no math-mode detection for align-environment [9.3.7 (9.3.7-13-ge62ca4-elpaplus @ /home/stefi/.emacs.d/elpa/org-plus-contrib-20200713/)]

2020-08-25 Thread Kyle Meyer
Stefi writes: > Hi Kyle, hi mailing list, > > I also evaluated (org-inside-LaTeX-fragment-p) and got non-nil values > for all blocks, however, inside the align* environment, the "fr" does > not get expanded on TAB whereas it does in equation environment. So > either the matchers do not include ali

Re: patch to suppress "deprecated cl" warnings plus few others

2020-08-25 Thread Kyle Meyer
Richard Kim writes: > Attached patch suppresses byte compiler warnings. Thanks. contrib/ doesn't receive much love when it comes to these sorts of things, and byte-compiling its files is not a pretty sight. > Subject: [PATCH] Suppressed all "deprecated cl" warnings plus few others. A "contrib:

Re: new feature for consideration: other-tab for org-agenda-window-setup

2020-08-26 Thread Kyle Meyer
Eric S Fraga writes: > Hi, > > for those of us using more recent versions of Emacs, the new > tab-bar-mode can be quite useful. As I have been playing with, I > thought it would make sense to have the option for agenda views to > pop-up in a new tab as an option. I've coded something that behave

Re: new feature for consideration: other-tab for org-agenda-window-setup

2020-08-27 Thread Kyle Meyer
Eric S Fraga writes: > On Wednesday, 26 Aug 2020 at 18:28, Kyle Meyer wrote: >> Thanks. Sounds fine to me. > > Hi Kyle, > > thanks for the feedback. Some questions/comments: > >> Style conventions: s/added/Add/s/handle/Handle/ > > Okay although grammatic

Re: new feature for consideration: other-tab for org-agenda-window-setup

2020-08-27 Thread Kyle Meyer
Eric S Fraga writes: > Dear all, > > Please see attached for a new version of my changes for adding > 'other-tab as an option for org-agenda-window-setup. > > I think I've addressed all your comments, Kyle, but any more are > welcome. It would be good if somebody who is using an older version of

Re: Bug: no math-mode detection for align-environment [9.3.7 (9.3.7-13-ge62ca4-elpaplus @ /home/stefi/.emacs.d/elpa/org-plus-contrib-20200713/)]

2020-08-27 Thread Kyle Meyer
Stefi writes: > It might be a change to texmathp.el. It is part of Auctex and checks if > math mode is on or off. I could not find align environment in the list > of default environments. Maybe that has changed. > > However, I added align and align* to "Texmathp Tex Commands" from the > customize

Re: Bug: org-capture entry sometimes ends without newline, garbles next headline [9.3.6 (9.3.6-elpa @ /home/arne/Disy/.emacs.d/elpa/org-9.3.6/)]

2020-08-28 Thread Kyle Meyer
Dr. Arne Babenhauserheide writes: > Sometimes when I use org-capture to create a new headline, that headline > ends with a non-empty partial line that isn’t terminated by a newline. > > This causes the next headline to be corrupted, because the * is appended > to the last line of the new entry. I

Re: Problem in 9.3: (next-error) broken

2020-08-28 Thread Kyle Meyer
Tory S. Anderson writes: > I discovered teh cause of this error is that new versions of orgmode > sets next-error-function and so breaks the. I've added a hook to clear > this in orgmode and I can navigate my grep properly again. I'm not having any luck triggering the issue, but in any case there

Re: new feature for consideration: other-tab for org-agenda-window-setup

2020-08-29 Thread Kyle Meyer
Kyle Meyer writes: > I'll let this sit for another day to see if other comments come in. Applied (e8ebf5d6c).

Re: Bug: org-capture entry sometimes ends without newline, garbles next headline [9.3.6 (9.3.6-elpa @ /home/arne/Disy/.emacs.d/elpa/org-9.3.6/)]

2020-08-29 Thread Kyle Meyer
Dr. Arne Babenhauserheide writes: > (how can I close the bug?) This list isn't hooked up to a tracker, so there's nothing to close.

Re: [RFC] ob-reticulate: R+Python interface from Babel

2020-08-29 Thread Kyle Meyer
Jack Kamm writes: > Hi all, > > Reticulate is an R package for interfacing between R and Python. It > allows accessing objects in a Python session from R and vice > versa. See https://rstudio.github.io/reticulate/ for more info about > it. > > I've written a small patch for using reticulate from o

Re: bash babel code gives error

2020-08-29 Thread Kyle Meyer
Colin Baxter writes: >> Colin Baxter writes: > > > Hello, I have various .tex files and an org file in the same > > directory. In the org file is the following simple bash babel-code > > > #+begin_src bash sha256sum *.tex > CHECKSUM #+end_src > > > > This code block used to wo

[PATCH] ob-core: Avoid table conversion warning for empty results

2020-08-29 Thread Kyle Meyer
Kyle Meyer writes: > Thanks for reporting. The _display_ of this warning starts with my > 14878f3f9 (ob-core: Display warning on failure to read results, > 2020-05-21). Here's the associated thread on the mailing list: > <https://orgmode.org/list/2449663.1588516...@apollo2.m

Re: Problem in 9.3: (next-error) broken

2020-08-29 Thread Kyle Meyer
Tory S. Anderson writes: > In any case, I keep having org-occur-next-match set away from nil, and > I'm actually having trouble figuring out which hook will fix it, since > org-mode-hook doesn't seem to be doing it. Instead I end up manually > evaluating =(setq next-error-function nil)= every time

Re: [PATCH] Expanded ob-python results handling and plotting

2020-08-29 Thread Kyle Meyer
Jack Kamm writes: > The attached patch adds ob-python value results handling for the > following types of results: > > - Dictionaries > - Numpy arrays > - Pandas dataframes > - Matplotlib figures Thanks. Just a couple of drive-by comments... > +try: > +import

Re: [PATCH] ob-core: Avoid table conversion warning for empty results

2020-08-31 Thread Kyle Meyer
Colin Baxter writes: > >> This patch would squelch the inappropriate warning you report > >> while not hiding other warnings. > > > Thank you. I'll apply the patch to my org-mode and report back. > > I have now applied the patch to my local org-mode git repository and it > works with n

Re: how to create next, previous, and up navigation links when exporting to html

2020-08-31 Thread Kyle Meyer
Christopher W. Ryan writes: > how do I create next, previous, and up navigation links when exporting > to html, like in the org mode manual: > > https://orgmode.org/manual/HTML-specific-export-settings.html I think that's created in a two-step process: using org-texinfo-export-to-texinfo to gener

Re: auto-completion for file paths?

2020-09-01 Thread Kyle Meyer
Dmitrii Korobeinikov writes: > Hi, all! > > Is there a way to provide completions for paths > [[file:suggest/completions/here]]? org-insert-link (C-c C-l) will read a file name from you if you select "file:" or call it with a prefix argument.

Re: [PATCH] org-capture: Update plist before finalizing

2020-09-01 Thread Kyle Meyer
Leo Vivier writes: > Hi there, > > I’m working on the parallelisation of `org-capture' for Org-roam, and > I’ve run into a problem with the updating of `org-capture-plist'. > > ;;- > ;; DESCRIPTION > ;;

Re: ob-java and ob-haxe

2020-09-02 Thread Kyle Meyer
ian martins writes: > I posted patches for ob-java and ob-haxe a couple months ago but there was > no interest. I have been given access to push to contrib. If there's no > objection I'll put them there. > > I'll rename my version ob-java-alt so it doesn't conflict with the official > one. The con

Re: new feature for consideration: other-tab for org-agenda-window-setup

2020-09-03 Thread Kyle Meyer
Bastien writes: > Hi again, > > Eric S Fraga writes: > >> Patch attached. Comments welcome, of course. > > IMHO it deserves a small addition to etc/ORG-NEWS. > > Can one of you add it? v2 (87imd33mys@ucl.ac.uk) included a NEWS entry.

Re: [PATCH] Omit file description when :file-desc has nil value

2020-09-03 Thread Kyle Meyer
Matt Huszagh writes: > Hello, > > This patch omits a file description when :file-desc has a nil > value. Previously, the following src block > > #+BEGIN_SRC asymptote :results value file :file circle.pdf :file-desc > :output-dir img/ > size(2cm); > draw(unitcircle); > #+END_SRC > > would yiel

Re: [PATCH] lisp/ob-core.el: pass expanded body to org-confirm-babel-evaluate

2020-09-05 Thread Kyle Meyer
Tom Gillespie writes: > Hi Kyle, > Following up in this thread having investigated the impact of coderefs. > My conclusion is that coderefs need to be stripped out before they are > passed to org-confirm-babel-evaluate. They are not present in the > executed code and removing them is not somet

two test failures on maint branch

2020-09-05 Thread Kyle Meyer
Just a heads up: with recent changes on maint, I'm seeing two test failures: 2 unexpected results: FAILED test-org-inlinetask/folding-directly-consecutive-tasks/1 FAILED test-org/org-read-date It looks like the first one came with ee3c3b554 (org.el: Allow empty subtrees to be

Re: [PATCH] Omit file description when :file-desc has nil value

2020-09-05 Thread Kyle Meyer
Hi Matt, It looks like this message got detached from the original thread [*] and ended up a bit misformatted (at least for plain-text readers). This seems to be the message you accidentally sent to me off-list, so I will copy my reply here as well. [*] https://orgmode.org/list/87tuwef76g@

Re: org-babel support for haxe

2020-09-06 Thread Kyle Meyer
Hi ian, It looks like this library is instead going to be available through an ELPA, but FWIW here are a couple of comments on the tests. ian martins writes: > diff --git a/testing/examples/ob-haxe-test.org > b/testing/examples/ob-haxe-test.org > new file mode 100644 > index 0..ba9119d5

Re: [PATCH] org-add-planning-info: respect caller's given time [9.3.7 (release_9.3.7-716-g3d4876 @ /home/n/.emacs.d/straight/build/org/)]

2020-09-07 Thread Kyle Meyer
No Wayman writes: > Unfortunately I'm unable to get the test suite to run correctly. > I've followed the instructions in the testing/README, but the > tests hang due to some sort misconfiguration with python and > readline on my end: > >> Warning (python): Your ‘python-shell-interpreter’ doesn’t

Re: [PATCH] org-add-planning-info: respect caller's given time [9.3.7 (release_9.3.7-716-g3d4876 @ /home/n/.emacs.d/straight/build/org/)]

2020-09-08 Thread Kyle Meyer
Jack Kamm writes: > No, the tests don't stall on my end (Archlinux with manually compiled > emacs 28). I also tested on a debian10vm and the tests passed there too. > > But since we know it's related to 4df12ea39 that gives some > clues...could you try the attached patch to see if it fixes things?

Re: Release 9.3.8

2020-09-09 Thread Kyle Meyer
Bastien writes: > Kévin Le Gouguec writes: > >> Bastien writes: >> - During the development of 9.4, AFAICT, while the "Version:" comment in org.el sayd "9.4-dev", the org-version variable matched the latest tag, i.e. 9.3.x. I therefore couldn't figure out a way to

Re: eldoc recursion error

2020-09-10 Thread Kyle Meyer
Matt Price writes: > On Tue, Sep 8, 2020 at 11:27 AM Matt Price wrote: >> On Tue, Sep 8, 2020 at 10:53 AM Bastien wrote: >> >>> Matt Price writes: >>> >>> > In a new org file, add these lines: >>> > >>> > #+begin_src python >>> > print >>> > #+end_src >>> > >>> > position cursor inside block a

Re: Bug: Typo in archive location example in manual [9.3.7 (release_9.3.7-807-gf1363d @ /home/yantar92/.emacs.d/straight/build/org/)]

2020-09-12 Thread Kyle Meyer
Ihor Radchenko writes: > Archive location example in 16.7 Summary of In-Buffer Settings section > of the manual is not valid. Patch attached. > Subject: [PATCH] Fix example of in-buffer setting of archive location in > manual > > The provided example '%s_done' is not valid syntax for archive > l

Re: #+ATTR_HTML examples uses old syntax

2020-09-12 Thread Kyle Meyer
Nick Dokos writes: > The attached patch fixes an example in the "Tables in HTML export" > section of the manual that uses the old `border="3"' syntax instead > of `:border 3' etc. > Subject: [PATCH] Fix syntax of #+ATTR_HTML > > The example in the "Tables in HTML export" section of the manual > u

Re: how to remove automatically an intermediate odt-File

2020-09-12 Thread Kyle Meyer
Rainer Thiel writes: > I have set org-odt-preferred-output-format to docx, which works fine. > How can I have the intermediate odt-file removed automatically after > the docx-file is created? Here's one (lightly tested) option: (advice-add :after #'org-odt-convert (lambda (&o

changelog entry via Magit (was Bug: Typo in archive location example in manual)

2020-09-13 Thread Kyle Meyer
Ihor Radchenko writes: > By the way, do you know how to automatically format changelog entries in > magit. The suggestion from contribute page seems outdated (or I miss > something): > >> If you are using magit.el in Emacs, the ChangeLog for such entries are >> easily produced by pressing C in the

Re: org-babel support for haxe

2020-09-13 Thread Kyle Meyer
ian martins writes: > ob-haxe and ob-java both involve a few changes to ob-core to allow temp > directories instead of just temp files. Should I submit that as a separate > patch? It looks like that change is included with your ob-java patch [0], which will be considered after 9.4 is released [1]

Re: Using est+ with effort estimate range

2020-09-13 Thread Kyle Meyer
Thanks for the report, and sorry for the slow reply. Axel Kielhorn writes: >> Am 30.05.2020 um 14:40 schrieb Axel Kielhorn : >> >> Hello, >> >> according to the manual, there is a special column type for column view >> >> ‘est+’ Add low-high estimates. >> [...] > > There was a bug repor

Re: Bug: =C-c C-e l o= does not open the pdf anymore [9.3.7 (9.3.7-55-gba2405-elpa @ /home/fsantos/.emacs.d/elpa/org-20200907/)]

2020-09-14 Thread Kyle Meyer
Colin Baxter writes: >> Frederic Santos writes: > > > Hi everyone, After upgrading to Emacs 27, I noticed that, for any > > org document, =C-c C-e l o= now behaves on my computer as =C-c C-e > > l p=; i.e., the pdf is correctly produced, but is not displayed > > anymore on sid

[PATCH] ob-core: Fix handling of multiple noweb refs in same line

2020-09-14 Thread Kyle Meyer
Tom Gillespie writes: > Hi, >The 9.4 release has a bug where it will only tangle the first noweb > reference on a line. > This is also present at 9c31cba002a1ba93053aebea1f778be87f61ba06. It happens > in > emacs-27 and emacs-28. The reproduction is below. Best! Thanks for the report and the

pcase failure with Emacs 24 (was Emacs version for Org 9.4?)

2020-09-15 Thread Kyle Meyer
Jens Lechtenboerger writes: > Hi there, > > if I open an Org file on > “GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.22.11) of > 2017-09-12 on hullmann, modified by Debian” > I get this error (which I don’t know how to debug): > > Eager macro-expansion failure: (wrong-type-argument listp

Re: [PATCH] ob-core: Fix handling of multiple noweb refs in same line

2020-09-15 Thread Kyle Meyer
ences breaking > should show up elsewhere (though I guess you never know). Thank you > for tracking this down, and now I know how to add ert tests for things > like this in the future! Best, > Tom > > On Tue, Sep 15, 2020 at 12:21 AM Kyle Meyer wrote: [...] >> Subject: [PATCH]

Re: how to exclude a file from appearing in the refile target cache?

2020-09-16 Thread Kyle Meyer
swedebugia writes: >> > On Sep 15, 2020, at 3:37 PM, swedebugia [...] >> > I read: >> > https://orgmode.org/manual/Refile-and-Copy.html >> > >> > But its unclear to me how to exclude a file from appearing in the >> > refile target cache. [...] >> You can use org-refile-targets to explicitly tell

Re: Configuring text export block output

2020-09-16 Thread Kyle Meyer
Tim Quelch writes: > For example if I have a source block > > #+begin_src python > Some code here > with multiple lines > #+end_src > > With `org-ascii-export-as-ascii` the above block gives: > > , > | Some code here > | with multiple lines > ` > > I don't really like this as the '|' at th

Re: pcase failure with Emacs 24 (was Emacs version for Org 9.4?)

2020-09-16 Thread Kyle Meyer
Jens Lechtenboerger writes: > On 2020-09-15, Kyle Meyer wrote: > >> It is pretty tricky to debug, but the failure starts with 4a27b67fd >> (org-element: Fix property drawers parsing, 2020-04-22). As far as I >> can see, the pattern introduced there is perfectly valid and

[PATCH] org.el: Fix regression in handling of empty #+TAGS

2020-09-16 Thread Kyle Meyer
Allen Li writes: > Previously, placing an empty #+TAGS: in a file would override > org-file-tags for the file. In 9.4, an empty #+TAGS: is ignored and > org-file-tags is used. > > The relevant code in org.el: > > (setq org-current-tag-alist > (org--tag-add-to-alist >or

Re: eldoc recursion error

2020-09-16 Thread Kyle Meyer
James N V Cash writes: > I've attached a patch that addresses the recursion issue with Emacs 28 > and shows eldoc properly with example python. It presumably should act > the same with older versions of Emacs, although I haven't tested. Thanks for the patch! For information about the expected co

Re: eldoc recursion error

2020-09-19 Thread Kyle Meyer
James N. V. Cash writes: > Kyle Meyer writes: >> Okay, so when eldoc-documentation-functions is defined (Emacs >=28), we >> take the first function and go with it. That might not be exactly what >> you'd see in the native buffer, depending on whether there

Re: [PATCH] org.el: Fix regression in handling of empty #+TAGS

2020-09-19 Thread Kyle Meyer
Kyle Meyer writes: > The following patch should restore the previous behavior. I'll apply it > in a couple of days if no objections come in. > > -- >8 -- > Subject: [PATCH] org.el: Fix regression in handling of empty #+TAGS Pushed (3eccc537c).

Re: eldoc recursion error

2020-09-20 Thread Kyle Meyer
James N. V. Cash writes: > Indeed, testing with an eldoc backend (a personally hacked-up version of > clojure's cider) that actually uses the callback, it wasn't working with > the previous approach. I've attached a patch that addresses the > previously-mentioned issues as well as this. [...] > @@

Re: eldoc recursion error

2020-09-20 Thread Kyle Meyer
James N. V. Cash writes: > Kyle Meyer writes: > >> Does your cider test case above break if we use >> eldoc-print-current-symbol-info without relaying the callback? That is, >> this squashed into your patch: > > My concern with using the eldoc-print-current-

Re: eldoc recursion error

2020-09-20 Thread Kyle Meyer
This was resolved by the thread at . Although the first message in that thread had an In-Reply-To header pointing to a message in this thread, it didn't have a proper References header, so I don't think will pick up

Re: [PATCH] (org-remove-occur-highlights) Implements option to remove highlights between points

2020-09-21 Thread Kyle Meyer
Nicholas Savage writes: > I realize now that I messed up sending this patch yesterday so it > didn't show up on updates.orgmode.org. I just wanted to repost it with > a correct subject to make sure it didn't get lost. My original message > follows. This topic is now split across three separate th

Re: ORG update made Dired the only way to open folders

2020-09-23 Thread Kyle Meyer
Ypo writes: > Then could it be a bug? Before the update file: links to a folder > opened it out of emacs. Now it doesn't, even using "attach"'s option > which offers to open links out of emacs. Which attach option is that? Did you follow Ihor's suggestion of removing (directory . emacs) from org

Re: [PATCH] Omit file description when :file-desc has nil value

2020-09-23 Thread Kyle Meyer
Matt Huszagh writes: >> Kyle Meyer writes: >> >>> I also don't find the current behavior particularly intuitive. (I'm >>> also not really a babel user, so my opinion probably shouldn't count for >>> much.) If we were adding it today, I th

Re: org-table-sum

2020-09-24 Thread Kyle Meyer
Kein Test writes: > Hi, > > I found out about org-table-sum yesterday, but I quickly ran into a > problem, where the result is not right. > > For example: > > | 171.00 | > | 4.07 | > | 4.44 | > | 2.61 | > | 12.21 | > | 6.69 | > | 19.72 | > | 23.09 | > | 6.23 | > | 15.28 | > | 250.00

Re: org-table-sum

2020-09-24 Thread Kyle Meyer
Kyle Meyer writes: > Here's what org-table-sum does underneath: > > (apply #'+ > (list 171.0 4.07 4.44 2.61 12.21 6.69 19.72 23.09 6.23 15.28 78.85)) > ;; => 1094.18998 Sorry, I pasted the wrong snippet (that one above has some numbers pruned and

Re: [PATCH] Omit file description when :file-desc has nil value

2020-09-24 Thread Kyle Meyer
Matt Huszagh writes: > This patch looks good. I've tested it and it works well for me. Thanks > for coming up with a good solution! Thanks for testing it out. > I think the one thing still missing is some documentation in the info > manual. Something along the lines of [...] Yep, the manual sho

Re: [PATCH] Add %L (the link content *not* as a full link) to Capture expansions

2020-09-24 Thread Kyle Meyer
Samuel W. Flint writes: >> Bastien writes: > > B> Can you provide a patch to announce this in etc/ORG-NEWS? > > Please see the attached patch. Thanks. Applied (488076e0a).

Re: problem with org-capture (via gnus-icalendar-event-export)

2020-09-25 Thread Kyle Meyer
Eric S Fraga writes: > Hello, > > I use gnus-icalendar-event-export to calendar invites to my org agenda > files. This uses org-capture and suddenly this appears to have stopped > working. See attached backtrace. > > I don't have time to debug at the moment but thought I'd bring this to > the at

Re: Bug: org-capture: %L causes arg out of range error for empty string annotation [9.4 (release_9.4-31-g8c44f2 @ /home/n/.emacs.d/straight/build/org/)]

2020-09-25 Thread Kyle Meyer
No Wayman writes: > No Wayman writes: > >> If `v-a' is an empty string, the call to `replace-match' throws >> an >> Args out of range error. Similar assignments in that area of the >> code use an `and' comparison to guard against this, so perhaps >> it >> should be: >> >> >>> (v-L (if (and v-a

Re: Bug: Org-mode v3.8 tag hierarchy [9.3.3 (release_9.3.3 @ /home/user/.emacs.d/org-mode/lisp/)]

2020-09-27 Thread Kyle Meyer
Leon Weber writes: > Hi together, I recently updated from org-mode version 9.1.8 to 9.3. I > noticed a problem with group tags / tag hierarchy in the agenda-view > (Agenda for current week or day). > > Example File: > -- > #+TAGS: [ PARENT : CHILD1 CHILD2 ] > * test1 :CHILD1: > SCHED

Re: [PATCH] Re: Bug: org-cycle stops working on Org files with empty lines at end of buffer [9.4 (9.4-elpaplus @ /home/brentg/.emacs.d/elpa/org-plus-contrib-20200914/)]

2020-09-27 Thread Kyle Meyer
Ihor Radchenko writes: > Subject: [PATCH] Do not remove trailing newline when deleting planning info > line. > > * lisp/org.el (org-add-planning-info): Remove front newline instead of > trailing newline when deleting planning info is completetly removed > from a heading. Fixes "Cycling through T

Re: Cycling through TODO workflow joins the next line onto the current one

2020-09-28 Thread Kyle Meyer
Ihor Radchenko writes: >> On my emacs 27, following demonstrates the problem. > > The patch is attached. It should fix the problem. Thanks for the patch. > Subject: [PATCH] Do not remove trailing newline when deleting planning info > line. > > * lisp/org.el (org-add-planning-info): Remove front

Re: Proposal: do not align tags in Agenda

2020-09-29 Thread Kyle Meyer
Michaël Cadilhac writes: > Hello all, > > I have a wide screen, which makes right edge alignment of tags in the > agenda inconvenient (they're hard to match with the main entry). > Setting org-agenda-tags-column to a specific column overwrites part of > the entry, which is not optimal. I'd simply

Re: PATCH: Display point of code block point when confirming evaluation

2020-09-29 Thread Kyle Meyer
Thanks for the patch, and sorry for the very delayed response. Jarmo Hurri writes: > Greetings. > > Please find attached a patch that adds the point of the source code > block to the message shown to user when confirming the evaluation of the > block. > > In large org-files, I have often trouble

Re: Links in complete org-todo-keyword-face not highlighted

2020-09-30 Thread Kyle Meyer
Bob Wilson writes: > I often put links in TODOs, but it would appear that in org 9.4, > marking a task complete changes the font of the entire text (link and > non-link) to be the same color, so the link is no longer highlighted. [...] > I tried searching the mailing list to see if this has been d

Re: [PATCH] Omit file description when :file-desc has nil value

2020-10-02 Thread Kyle Meyer
Matt Huszagh writes: > Subject: [PATCH] list/ob-core.el: Allow passing empty vector to :file-desc to > omit description s/list/lisp/ > diff --git a/doc/org-manual.org b/doc/org-manual.org > index e7d25b90e..a790f3225 100644 > --- a/doc/org-manual.org > +++ b/doc/org-manual.org > @@ -17482,10 +1

Re: org-capture at point

2020-10-02 Thread Kyle Meyer
No Wayman writes: >> Looks like it was introduced with: >> >> f5573e6a0 org-capture.el: Fix heading's level when inserting a >> template "here" > > I believe the issue is due to `org-back-to-heading' moving point > when calculating the heading level. > The attached patch corrects the issue on my

Re: org-capture at point

2020-10-02 Thread Kyle Meyer
david wen riccardi-zhu writes: > I use org-plus-contrib 2020928 with Emacs 27.1. > > Since org-plus-contrib 20200920, I'm no longer able to get > org-capture to insert a template at the point. Instead, it seems > to place the entry at the appropriate heading level, above the > current heading.

Re: [PATCH] org: Fix a docstring typo

2020-10-02 Thread Kyle Meyer
morgan.j.sm...@outlook.com writes: > From: Morgan Smith > > * lisp/org.el (org-check-before-invisible-edit): Fix a docstring typo. > --- > > Hello Org! This is my first patch so go easy on me. I'm planning on > doing more patches in the future. I already submitted the FSF > paperwork for emacs, s

Re: problem with org-highest-priority

2020-10-05 Thread Kyle Meyer
joa...@verona.se writes: > This used to work: > (defun jv-org-priorities () > (setq org-highest-priority ?0 ;; 64 @ 48 0, bugs start happening if you > have higher prios tnan 0, like '!' > org-lowest-priority ?E ;; E > org-default-priority ?0 ;; 0 > org-priori

Re: [PATCH] Omit file description when :file-desc has nil value

2020-10-06 Thread Kyle Meyer
Matt Huszagh writes: > I've made those fixes and attached the updated patch. Applied (d9884cfa7). Thank you!

Re: PATCH: Display point of code block point when confirming evaluation

2020-10-06 Thread Kyle Meyer
Kyle Meyer writes: > That sounds reasonable to me, and the change looks fine to me. My only > thought is that perhaps the line number would be friendlier to report, > but I don't feel strongly about that. > > I'll wait a few days for any babel users to chime in and then

Re: [PATCH] Adaptive Org faces in headings?

2020-10-06 Thread Kyle Meyer
Protesilaos Stavrou writes: > Sorry to re-open this issue. The following change extends Ihor's patch > to also cover checkbox statistics. Seems to work just fine on my end. > Thanks again! Thanks for the patch. Looks good on my end too. Would you mind adding a commit message and sending the g

Re: Bug: [PATCH] org-agenda: "Invalid face reference: t" errors [9.4 (release_9.4-49-g4b150d @ /home/n/.emacs.d/straight/build/org/)]

2020-10-06 Thread Kyle Meyer
No Wayman writes: > I noticed recently that my message buffer was getting clobbered > with thousands of Invalid face reference errors when moving point > around an org-agenda buffer. e.g.: > >> Invalid face reference: t [4519 times] [...] > I believe the face spec in the call to `add-face-text-p

Re: [PATCH] Adaptive Org faces in headings?

2020-10-07 Thread Kyle Meyer
Protesilaos Stavrou writes: > Tried to format the patch. Please see the attached file. If it does > not work, feel free to dismiss it and just apply the change yourself. Looks good. Applied (23f9415c6). Thanks.

Re: Disabling automatic links for timestamps and tags

2020-10-10 Thread Kyle Meyer
Peter Bienstman writes: > How can I prevent orgmode from turning timestamps and tags into links? Could you provide a minimal example that demonstrates that behavior you're referring to?

Re: Deadline w/o time not showing on daily agenda

2020-10-10 Thread Kyle Meyer
David Masterson writes: > Is there a way to get tasks with a deadline that doesn't have a time > (just a day) to show on the daily agenda? Tasks w/ timed deadline do > show on the daily agenda. Could you provide a minimal example that shows the issue? On the current master branch (23f9415), I t

Re: Disabling automatic links for timestamps and tags

2020-10-10 Thread Kyle Meyer
Peter Bienstman writes: > I don't want clicking on timestamps and tags to open a search Window. You can customize org-highlight-links. For example, assuming you have seq and org loaded: (setq org-highlight-links (seq-remove (lambda (x) (memq x '(tag date))) o

Re: Bug: org-priority face has extra space at the end starting from version 9.4 [9.4 (9.4-elpaplus @ /home/rrudakov/.emacs.d/elpa/org-plus-contrib-20200914/)]

2020-10-10 Thread Kyle Meyer
Protesilaos Stavrou writes: > On 2020-09-29, 08:00 +, Roman Rudakov wrote: > >> "Protesilaos Stavrou" writes: >> >>> Roman Rudakov [2020-09-15, 18:50 +]: >>> I use theme which draw boxes around priority cookie. Before updating to version 9.4 box was rendered just around square

Re: Bug: ODT exporter permission issue on functional distros (eg, Guix) [9.1.9 (release_9.1.9-65-g5e4542 @ /home/cwebber/.guix-profile/share/emacs/26.3/lisp/org/)]

2020-10-12 Thread Kyle Meyer
Christopher Lemmer Webber writes: > Emacs : GNU Emacs 26.3 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.20) > Package: Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ > /home/cwebber/.guix-profile/share/emacs/26.3/lisp/org/) [...] > Subject: [PATCH] ox-odt: Fix read-only error with styles

Re: Heading won't unfold on TAB if last line has just spaces, with empty line preceding.

2020-10-13 Thread Kyle Meyer
Giovanni Moretti writes: > There's something weird with headings that can cause unfolding to fail. > Headings can > be folded with TAB refuse to unfold - they need Shift-TAB to see the > contents. This > is scary as it looks like content has been accidentally deleted whereas it's > really >

Re: Folding headings which contain only blank lines

2020-10-16 Thread Kyle Meyer
Mikhail Skorzhisnkii writes: > Hi, > > Patch ee3c3b554799c9f0fbe387848cd9eec7e9ab9d95 breaks unfolding > when > org-cycle-separator-lines set to -1. [...] > Unfolding will not unfold Test1 with > ee3c3b554799c9f0fbe387848cd9eec7e9ab9d95 applied. Reverting this > patch makes it working back. Is

Re: Disabling automatic links for timestamps and tags

2020-10-18 Thread Kyle Meyer
Peter Bienstman writes: > Thanks! Is there a way to achieve this while still keeping the syntax > highlighting intact? I'm not aware of a built-in option to do that. If you want to come up with a custom solution, the code to study is org-set-font-lock-defaults, which in turn calls org-activate-t

Re: Org Refile RFLOC and Struct Type

2020-10-18 Thread Kyle Meyer
Kevin Foley writes: > I was recently working with `org-refile` and wanted to use a custom > target. There is the `rfloc` argument which is documented as: > >> RFLOC can be a refile location obtained in a different way. > > There's no documentation as to how `rfloc` should be structured. To > fig

Re: Bug: Incorrect done TODO keywords highlighting in column view

2020-10-18 Thread Kyle Meyer
Martin Kampas writes: > Hi, > > In columns view, all TODO keywords except those with face set explicitly with > org-todo- > keyword-faces are red. Done keywords should be green. [...] > Subject: [PATCH] org-colview: Fix done TODO keywords highlighting > > * lisp/org-colview.el (org-columns--overl

Re: [PATCH] Org Refile Document RFLOC (was: Org Refile RFLOC and Struct Type)

2020-10-19 Thread Kyle Meyer
Kevin Foley writes: > My pleasure, I've attached a patch to this email. I put something > together but I wasn't sure how it should be styled/formatted so if > anyone has any suggestions I'd be happy to update it. Thanks. Looks good. Applied (2d1e2606e), tweaking the commit message to use a col

Re: Bug: Incorrect done TODO keywords highlighting in column view

2020-10-19 Thread Kyle Meyer
Martin Kampas writes: > Hi Kyle, > > You are right, I completely forgot about columns view under the "regular" > buffers. > Updated patch below. Thanks for the update. Applied (90b14cb40), adding a TINYCHANGE cookie to the commit message. (Please let me know if you've completed the copyright

Re: Bug: missing autoload org-load-modules-maybe [9.4 (9.4-7-g3eccc5-elpaplus @ /home/standard/.emacs.d/elpa/26.3/develop/org-plus-contrib-20200921/)]

2020-10-19 Thread Kyle Meyer
Tim Frana writes: > Hello, > > Reproduction: > > Start emacs without loading org, call org-store-link. > Error message is displayed: "Symbol’s function definition is void: > org-load-modules-maybe" > > Expected behaviour: > > Org link to the current location is stored. > > I guess an autoload sho

Re: Folding headings which contain only blank lines

2020-10-23 Thread Kyle Meyer
Dmitrii Korobeinikov writes: >> was trying to find an example of the issue fixed by ee3c3b55. Dmitrii, >> did ee3c3b55 solve the issue on you reported? > > Hi, Kyle, I haven't checked it, but since several people reported that > it wasn't working for them, I decided to forego the trouble of > ins

Re: [PATCH] ob-java

2020-10-24 Thread Kyle Meyer
Hi ian, ian martins writes: >> * Changes >> >> - support for functional mode (~:results value~) >> - accept variables >> - don't require package, class, and main definitions >> - write source and result tempfiles to ~org-babel-temporary-directory~, >> but respects the ~:dir~ header >> - work with

<    4   5   6   7   8   9   10   11   12   13   >