[O] Radio links fail if adjacent

2019-01-23 Thread Jay Dresser
If you have a sequence of space separated words on a single line, i.e. "link1 link2 link3 link4 ..." and those words match radio targets, every other word/link will not be recognized as a radio link. In this example link2 and link4 will not be links. describe-char correctly identifies the good link

Re: [O] M-S-RET doesn't work anymore?

2019-01-23 Thread Kaushal Modi
On Wed, Jan 23, 2019, 7:45 PM Amin Bandali > Also notice the left over greater sign ‘>’ on the fourth line. > Yeah, that was fixed in a later commit. I was surprised to see that too, but confirmed that the latest master doesn't have that. >

Re: [O] Tracking Tags ??

2019-01-23 Thread David Masterson
I wrote: >> Anyone have a good method of tracking the Tags that you've used across >> all of your Org files? Some sort of Tag Index to help you keep track >> of the tags you've used and where you've used them so that you don't >> start creating new tags that differ from old ones by (say) >> capit

Re: [O] Tracking Tags ??

2019-01-23 Thread David Masterson
Colin Baxter writes: > Hello David, >> David Masterson writes: > > > Anyone have a good method of tracking the Tags that you've use > > across all of your Org files? Some sort of Tag Index to help you > > keep track of the tags you've used and where you've used them so > >

Re: [O] M-S-RET doesn't work anymore?

2019-01-23 Thread Amin Bandali
> #+begin_src diff > -(org-defkey org-mode-map (kbd "S-") #'org-table-copy-down) > -(org-defkey org-mode-map (kbd "M-S-") #'org-insert-todo-heading) > -(org-defkey org-mode-map (kbd "ESC S-") #'org-insert-todo-heading) > +(org-defkey org-mode-map (kbd "S-RET>") #'org-table-copy-down) > +(org-defk

Re: [O] Tracking Tags ??

2019-01-23 Thread Ken Mankoff
On 2019-01-23 at 12:22 -0800, John Kitchin wrote... > I see, that only finds files with the particular tag. I think the goal of > this is to get a list of all the tags, for use in completion, for example. I do not think grep is the right solution, but as an ugly hack it can find most of my tag

Re: [O] M-S-RET doesn't work anymore?

2019-01-23 Thread Kaushal Modi
On Wed, Jan 23, 2019 at 3:54 PM Marco Wahl wrote: > As a workaround you can evaluate the lines (that were active before the > commit) > > (org-defkey org-mode-map (kbd "S-") #'org-table-copy-down) > (org-defkey org-mode-map (kbd "M-S-") #'org-insert-todo-heading) > (org-defkey org-mode-map (kbd "

Re: [O] Shift-RETURN in table doesn't copy the value of the cell above

2019-01-23 Thread Marco Wahl
Hi Bill, > |A|B| > > This set of keystrokes makes: > > | A | B | > | | | > | | | > > But it used to make: > > | A | B | > | A | | > > Shift-RETURN doesn't copy the value of the cell above. This changed a > little while ago (in the main development tree) but I don't know > exactly when.

Re: [O] M-S-RET doesn't work anymore?

2019-01-23 Thread Marco Wahl
Hi! > I regularly create checkbox lists on the fly with > > 1. [ ] blah and M-S-RET to create the second entry > > 2. [ ] I can confirm this. > But the checkbox is missing today. Has this functionality changed? > > I am running the latest master from git on windows emacs 25.1 I guess the new

Re: [O] Shift-RETURN in table doesn't copy the value of the cell above

2019-01-23 Thread Kaushal Modi
Possible a regression caused by https://code.orgmode.org/bzg/org-mode/commit/8a1957d59201940613ee90be9ed0a49e70131f37 ? -- Kaushal Modi On Wed, Jan 23, 2019 at 3:27 PM William Denton wrote: > > |A|B| > > This set of keystrokes makes: > > | A | B | > | | | > | | | > > But it used to mak

Re: [O] M-S-RET doesn't work anymore?

2019-01-23 Thread Kaushal Modi
On Wed, Jan 23, 2019 at 3:13 PM Bernt Hansen wrote: > Hi, > > I regularly create checkbox lists on the fly with > > 1. [ ] blah and M-S-RET to create the second entry > > 2. [ ] > > But the checkbox is missing today. Has this functionality changed? > > I am running the latest master from git on

[O] Org-Babel: Alternate caching behaviour when file does not exist

2019-01-23 Thread Nik Clayton
I discovered that if you have ":cache yes" set on a SRC block, with the results being written to a file with ":results filename.png", Org Babel will not re-evaluate the block if the file doesn't exist and the cache checksum hasn't changed. This caused me a problem, as the .org files that I'm shari

[O] Shift-RETURN in table doesn't copy the value of the cell above

2019-01-23 Thread William Denton
|A|B| This set of keystrokes makes: | A | B | | | | | | | But it used to make: | A | B | | A | | Shift-RETURN doesn't copy the value of the cell above. This changed a little while ago (in the main development tree) but I don't know exactly when. Bill -- William Denton :: Toron

Re: [O] Tracking Tags ??

2019-01-23 Thread John Kitchin
I see, that only finds files with the particular tag. I think the goal of this is to get a list of all the tags, for use in completion, for example. John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pit

Re: [O] Tracking Tags ??

2019-01-23 Thread Colin Baxter
> John Kitchin writes: > There are a few ways to specify tags with inheritance at the file, > and heading level that would be trickier to get via grep. That > said, if you have a nice grep cmd/regexp that finds tags do share! I take your point. My setup must be very simple becaus

[O] M-S-RET doesn't work anymore?

2019-01-23 Thread Bernt Hansen
Hi, I regularly create checkbox lists on the fly with 1. [ ] blah and M-S-RET to create the second entry 2. [ ] But the checkbox is missing today. Has this functionality changed? I am running the latest master from git on windows emacs 25.1 Thanks, Bernt

[O] Bug: org-map-drill-entries fails in org-tags-expand on empty string

2019-01-23 Thread Robert Irelan
Patch to fix attached. From a3af9004fbc5a8a86ba8f990d393403ec671f9bf Mon Sep 17 00:00:00 2001 From: Robert Irelan Date: Wed, 23 Jan 2019 11:11:14 -0800 Subject: [PATCH] org-drill: Fix tag match in org-map-drill-entries * contrib/lisp/org-drill.el: Change MATCH argument to ORG-MAP-ENTRIES from ""

Re: [O] Tracking Tags ??

2019-01-23 Thread John Kitchin
There are a few ways to specify tags with inheritance at the file, and heading level that would be trickier to get via grep. That said, if you have a nice grep cmd/regexp that finds tags do share! John --- Professor John Kitchin Doherty Hall A207F Department of Che

Re: [O] Tracking Tags ??

2019-01-23 Thread Colin Baxter
Hello David, > David Masterson writes: > Anyone have a good method of tracking the Tags that you've use > across all of your Org files? Some sort of Tag Index to help you > keep track of the tags you've used and where you've used them so > that you don't start creating new ta

Re: [O] Task repeat every weekday?

2019-01-23 Thread Marcin Borkowski
On 2019-01-23, at 14:16, Stig Brautaset wrote: > Hi! I have some work tasks that I need to get into the habit of doing > every day. (Reviewing PRs / Jira, ...) > > Currently I do this with a calendar-style repeater, like so: > > , > | * Recurring Tasks > | ** Review PRs > |:LOGBOOK: > |

Re: [O] Bug: LaTeX export of table with caption broken

2019-01-23 Thread Nick Dokos
Eric S Fraga writes: > On Tuesday, 22 Jan 2019 at 23:52, Nicolas Goaziou wrote: >> I cannot reproduce it. E.g., >> Would you have an ECM? > > Strangely, with attached ECM and emacs -Q, I have this problem. See > attached resulting LaTeX. > > Thanks, Guessing the culprit is c28eb3c2cb904666594e4

Re: [O] Bug: LaTeX export of table with caption broken

2019-01-23 Thread Eric S Fraga
On Wednesday, 23 Jan 2019 at 15:21, Nicolas Goaziou wrote: > Odd. Even with a minimal init file (i.e, I only loading Org), I cannot > reproduce it. Thanks Nicolas. It is indeed strange. I will play some more when I get a chance (bogged down with work at the moment). As I have a way around the p

Re: [O] Tracking Tags ??

2019-01-23 Thread Anders Johansson
Anyone have a good method of tracking the Tags that you've use across all of your Org files? Some sort of Tag Index to help you keep track of the tags you've used and where you've used them so that you don't start creating new tags that differ from old ones by (say) capitalization? Or to help

Re: [O] [PATCH] org-src.el: Fix org-edit-src-exit with split-window-below

2019-01-23 Thread Nicolas Goaziou
Hello, Daniel Kraus writes: > This fixes a bug that got introduced in 819e98afd where you end up with > 3 split windows if you exit an org source buffer with your > `org-src-window-setup` function set to `split-window-below`. Applied. Thank you. Regards, -- Nicolas Goaziou

Re: [O] Bug: LaTeX export of table with caption broken

2019-01-23 Thread Nicolas Goaziou
Hello, Eric S Fraga writes: > On Tuesday, 22 Jan 2019 at 23:52, Nicolas Goaziou wrote: >> I cannot reproduce it. E.g., >> Would you have an ECM? > > Strangely, with attached ECM and emacs -Q, I have this problem. See > attached resulting LaTeX. Odd. Even with a minimal init file (i.e, I only l

Re: [O] Task repeat every weekday?

2019-01-23 Thread Julius Dittmar
Am 23.01.19 um 14:16 schrieb Stig Brautaset: > Is there a way to make this into a repeating TODO that shows only on weekdays? I did not yet find a way to meet all your requirements. Here's what I found up to now: Either create 5 separate repeating tasks, one per weekday, with a repeat of ++1w, or

[O] Task repeat every weekday?

2019-01-23 Thread Stig Brautaset
Hi! I have some work tasks that I need to get into the habit of doing every day. (Reviewing PRs / Jira, ...) Currently I do this with a calendar-style repeater, like so: , | * Recurring Tasks | ** Review PRs |:LOGBOOK: |:END: |<%%(sb/weekday-p date)> | |- https://github.com

Re: [O] Bug: LaTeX export of table with caption broken

2019-01-23 Thread Eric S Fraga
On Tuesday, 22 Jan 2019 at 23:52, Nicolas Goaziou wrote: > I cannot reproduce it. E.g., > Would you have an ECM? Strangely, with attached ECM and emacs -Q, I have this problem. See attached resulting LaTeX. Thanks, -- Eric S Fraga via Emacs 27.0.50, Org release_9.2-204-g3fc7b0 % Created 2019-01