org-read-date-minibuffer-local-map should use C-n/p/f/b

2020-05-29 Thread Alex Branham
Hello - I find it unintuitive that the usual calendar keys C-n/p/f/b don't work when scheduling tasks in org mode (yes, I know about S-right, etc). I've something like this to my init file for those four keys (based on their setup in org-keys.el) for some time with no negative repercussions (that

[O] Update Org in Emacs

2019-03-26 Thread Alex Branham
Hello - Is it possible to update Org upstream? Emacs is shipping 9.1.X while the latest stable org release is 9.2.X. I ask since I sometimes use emacs -Q (org 9.1), where

[O] Bug: org-todo calls unbound org-clock-out-if-current

2019-02-14 Thread Alex Branham
Hello - On the tip of the maint branch (8fc22d464d2bc4a3397516854375b177835d10bb) any call to functions like 'org-todo' results in an error 'void-function org-clock-out-if-current'. Here's a sample backtrace: Debugger entered--Lisp error: (void-function org-clock-out-if-current)

Re: [O] How to use org-protocol with text that includes &?

2018-08-30 Thread Alex Branham
> Would url-encoding help? Indeed it does, thank you! Alex

[O] How to use org-protocol with text that includes &?

2018-08-29 Thread Alex Branham
Hello - I'm struggling with org-protocol capturing text when it includes the symbol &. Here's an example of what I'm sending: emacsclient "org-protocol://capture?url=foo.com=bar=foobar" but the foobar2 doesn't get captured because of the &. Escaping it doesn't seem to help. How should I

[O] Support flymake with org-lint

2018-06-08 Thread Alex Branham
the buffer though. Alex >From b53c4068cb64c152c417014916c7d8c11e4651fb Mon Sep 17 00:00:00 2001 From: Alex Branham Date: Wed, 6 Jun 2018 14:44:12 -0500 Subject: [PATCH] Add support for flymake * lisp/org-flymake.el (org-flymake-org-lint-backend): New function * lisp/org-flymake.el (org-flymake-se

Re: [O] Trouble with scheduled item with deadline on agenda

2018-04-26 Thread Alex Branham
On Thu 26 Apr 2018 at 20:20, Bastien wrote: > Er, indeed - both bugs should now be fixed in maint. Looks good to me, thanks!

Re: [O] Trouble with scheduled item with deadline on agenda

2018-04-26 Thread Alex Branham
On Thu 26 Apr 2018 at 19:25, Bastien <b...@gnu.org> wrote: > Hi Alex, > > Alex Branham <alex.bran...@gmail.com> writes: > >> now deadlines aren't being put into the agenda at all >> unless they are also scheduled. :-( > > Is this a bug or expected?

Re: [O] Trouble with scheduled item with deadline on agenda

2018-04-26 Thread Alex Branham
On Thu 26 Apr 2018 at 18:34, Bastien wrote: >> ** TODO Pay estimated taxes >> SCHEDULED: <2018-03-31 Sat> DEADLINE: <2018-04-17 Tue -20d> >> >> and org-agenda-skip-deadline-prewarning-if-scheduled set to >> 'prescheduled. Since it is scheduled for a date later than today I >> would

Re: [O] Bug: Multiple tag selection broken on maint

2018-04-23 Thread Alex Branham
> Fixed. Thank you. Thanks! Alex

Re: [O] Bug: Multiple tag selection broken on maint

2018-04-20 Thread Alex Branham
On Fri 20 Apr 2018 at 04:27, Nicolas Goaziou wrote: >> #+BEGIN_EXAMPLE >> #+TAGS: office(c) car(C) >> * one >> #+END_EXAMPLE > > FWIW, I couldn't reproduce it on master. It seems to be a problem with org-tag-persistent-alist. I can't reproduce it if that's nil, but

Re: [O] Bug: Multiple tag selection broken on maint

2018-04-20 Thread Alex Branham
On Fri 20 Apr 2018 at 04:27, Nicolas Goaziou wrote: >> I'm tracking maint. With the following file: >> >> #+BEGIN_EXAMPLE >> #+TAGS: office(c) car(C) >> * one >> #+END_EXAMPLE > > FWIW, I couldn't reproduce it on master. That's surprising, since I can reproduce this

Re: [O] Support showing stars as pretty bullets

2018-04-10 Thread Alex Branham
t;*") ))) (should-not (equal t (org-test-with-temp-text "* Test *" (org-pretty-mode) (org-pretty-compose-p 8 8 "*") -------- >From 3278c7dd9d426bf205542c78d51456a9

Re: [O] Support showing stars as pretty bullets

2018-04-04 Thread Alex Branham
On Tue 03 Apr 2018 at 15:33, Nicolas Goaziou wrote: >> Fair enough. How about the attached patch instead? It only sets up the >> two local variables in org.el and puts the rest in org-entities.el since >> that file is also concerned with replacing characters with

Re: [O] Support showing stars as pretty bullets

2018-04-03 Thread Alex Branham
On Tue 03 Apr 2018 at 01:39, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Alex Branham <alex.bran...@gmail.com> writes: > >> Why not, if you don't mind me asking? Other major modes (python, elisp, >> and latex off the top of my head) setup pret

Re: [O] Support showing stars as pretty bullets

2018-04-02 Thread Alex Branham
On Mon 02 Apr 2018 at 13:47, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Alex Branham <alex.bran...@gmail.com> writes: > >> I've written this patch that makes use of prettify-symbols-mode to show >> the stars in org headings as nice UTF bu

[O] Support showing stars as pretty bullets

2018-04-01 Thread Alex Branham
>From 8ab48ccd43446bbe447108153c2dbb742d81895b Mon Sep 17 00:00:00 2001 From: Alex Branham <bran...@utexas.edu> Date: Sun, 1 Apr 2018 15:49:31 -0500 Subject: [PATCH] Add support for showing stars as UTF bullets * lisp/org.el(org-mode): Add local variables * li

[O] Trouble with scheduled item with deadline on agenda

2018-03-29 Thread Alex Branham
Hello - I have this item in one of my agenda files: ** TODO Pay estimated taxes SCHEDULED: <2018-03-31 Sat> DEADLINE: <2018-04-17 Tue -20d> and org-agenda-skip-deadline-prewarning-if-scheduled set to 'prescheduled. Since it is scheduled for a date later than today I would expect that it

[O] Bug: Multiple tag selection broken on maint

2018-03-22 Thread Alex Branham
I'm tracking maint. With the following file: #+BEGIN_EXAMPLE #+TAGS: office(c) car(C) * one #+END_EXAMPLE Doing C-c C-q on the "one" heading will not let me set both office and car tags. They are highlighted in the little selection popup, but only the last one selected actually gets added.

[O] Broken worg link

2018-02-27 Thread Alex Branham
On this page: https://orgmode.org/worg/org-tutorials/org-google-sync.html the link ical2org.awk 404s for me. Thanks, Alex

Re: [O] face for upcoming deadlines in agenda

2018-02-26 Thread Alex Branham
On Mon 26 Feb 2018 at 18:30, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Alex Branham <alex.bran...@gmail.com> writes: > >> I've attached a patch which gives a name to the 0.0 face in >> org-agenda-deadline-faces. This lets themes custo

Re: [O] face for upcoming deadlines in agenda

2018-02-26 Thread Alex Branham
rom 1a3f167583f9c964b37f92f2f0a4d67840749677 Mon Sep 17 00:00:00 2001 From: Alex Branham <bran...@utexas.edu> Date: Mon, 26 Feb 2018 16:41:40 -0600 Subject: [PATCH] * lisp/org-faces.el(org-upcoming-distant-deadline-face): new face --- lisp/org-faces.el | 9 +++-- 1 file changed, 7 insertions(+), 2

Re: [O] face for upcoming deadlines in agenda

2018-02-26 Thread Alex Branham
On Mon 26 Feb 2018 at 16:16, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Alex Branham <alex.bran...@gmail.com> writes: > >> Is there a face that controls agenda items with an upcoming deadline are >> displayed? It seems to just use "de

[O] face for upcoming deadlines in agenda

2018-02-26 Thread Alex Branham
Is there a face that controls agenda items with an upcoming deadline are displayed? It seems to just use "default" for me. I'm talking about items with a deadline within 'org-deadline-warning-days' number of days from now. If not, is there any way of getting someone to implement that? I'd do it

[O] Error with git-fetch from org repo

2017-12-15 Thread Alex Branham
Hello - I've been trying to git fetch from the org repo (git://orgmode.org/org-mode.git) today and keep getting this error: Fetching origin fatal: read error: Connection reset by peer error: Could not fetch origin Has anyone else had problems connecting? Thanks, Alex

Re: [O] [PATCH] make org-comment-dwim comment headings if on a heading

2017-11-29 Thread Alex Branham
> > Would you mind writing an entry in ORG-NEWS? It could go in > "Miscellaneous" section. Patch attached, thanks! > > Thank you! > > Regards, >From 1d62a9c612c97dd35929a40c49d86a5812a853e9 Mon Sep 17 00:00:00 2001 From: Alex Branham <bran...@utexas.edu>

Re: [O] [PATCH] make org-comment-dwim comment headings if on a heading

2017-11-26 Thread Alex Branham
Nov 2017 at 23:17, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Alex Branham <alex.bran...@gmail.com> writes: > >> This patch changes the behavior of `org-comment-dwim' so that if point >> is on a heading, it will toggle the heading. > > Th

[O] [PATCH] make org-comment-dwim comment headings if on a heading

2017-11-20 Thread Alex Branham
This patch changes the behavior of `org-comment-dwim' so that if point is on a heading, it will toggle the heading. Alex >From 655cd7afdfdf28797052952eae0c4e87cd86f445 Mon Sep 17 00:00:00 2001 From: Alex Branham <bran...@utexas.edu> Date: Mon, 20 Nov 2017 15:12:34 -0600 Subject: [PA

[O] [PATCH] documentation fix

2017-10-31 Thread Alex Branham
Hello, I tripped myself up by trying to set org-agenda-show-log instead of org-agenda-start-with-log, so hopefully this patch will help other people down the line. Alex >From 47e1c3a9cd66d73c01ec0b4072228c02abbe0450 Mon Sep 17 00:00:00 2001 From: Alex Branham <bran...@utexas.edu>

Re: [O] Ediff org files starts folded

2017-10-25 Thread Alex Branham
Thanks, I think this does exactly what I was looking for! Alex On Wed 25 Oct 2017 at 18:30, Oleh Krehel wrote: > Here's what I use: > > (defun ora-ediff-prepare-buffer () > (when (memq major-mode '(org-mode emacs-lisp-mode)) > (outline-show-all))) > > (add-hook

[O] Ediff org files starts folded

2017-10-25 Thread Alex Branham
Hello - Whenever I ediff an org file, the three windows start with the content folded and out of site. I have to navigate to windows A, B, and C and hit S- until everything is visible. Does anyone know a way to start org mode files unfolded when ediffing them? Thanks! Alex

[O] Firefox webextension for org capture

2017-08-17 Thread Alex Branham
Hi all - Apologies for not replying to the right thread; I couldn't figure out how to since I'm not subscribed to the list. There already exists a Firefox webextension for org capture. Here is the github page: https://github.com/sprig/org-capture-extension And here is the link to AMO:

Re: [O] [PATCH] allow users to customize string in org-agenda-time-grid

2017-07-11 Thread Alex Branham
isp/org-agenda.el (org-agenda-time-grid): ... > > Could you provide an ORG-NEWS entry, too? Yes, done. Alex >From da08983716a275b745288a25995e6c9d4e3104ca Mon Sep 17 00:00:00 2001 From: Alex Branham <bran...@utexas.edu> Date: Tue, 11 Jul 2017 08:08:58 +0200 Subject: [PATCH] org-agenda:

Re: [O] [PATCH] allow users to customize string in org-agenda-time-grid

2017-07-11 Thread Alex Branham
d says "The second item is a string which will be > placed behind the grid time." > > > On 7/6/17, Alex Branham <bran...@utexas.edu> wrote: >> Hello, >> >> This small patch allows users to customize the string to display after the >> time in the agenda view.

Re: [O] [PATCH] allow users to customize string in org-agenda-time-grid

2017-07-07 Thread Alex Branham
clearer. Alex >From 12e5561b1df1d86a45e7c418dd7dd44763e52423 Mon Sep 17 00:00:00 2001 From: Alex Branham <bran...@utexas.edu> Date: Fri, 7 Jul 2017 10:29:28 +0200 Subject: [PATCH] org-agenda.el: Allow users to customize string after time-grid * org-agenda.el: Users may now customize the s

[O] [PATCH] allow users to customize string in org-agenda-time-grid

2017-07-07 Thread Alex Branham
rom 3e1a9a4a0cde14e1496c355028c9ef3c8b75b9e2 Mon Sep 17 00:00:00 2001 From: Alex Branham <bran...@utexas.edu> Date: Fri, 7 Jul 2017 08:25:38 +0200 Subject: [PATCH] org-agenda.el: Allow users to customize string after time-grid * org-agenda.el: Users may now customize the string to display after the time in t

Re: [O] [PATCH] protocol: allow users to disable warning about old style links

2017-06-16 Thread Alex Branham
Hi, thanks for the reply. On Fri 16 Jun 2017 at 06:13, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Alex Branham <bran...@utexas.edu> writes: > >> This patch allows org mode users to disable the warning issued about >>old org protocol st

[O] [PATCH] protocol: allow users to disable warning about old style links

2017-06-14 Thread Alex Branham
. Thanks, Alex >From 8bfc951308324de8e455128950193c046691f1f8 Mon Sep 17 00:00:00 2001 From: Alex Branham <bran...@utexas.edu> Date: Wed, 14 Jun 2017 14:06:18 +0200 Subject: [PATCH] protocol: allow user to disable warning about old style links --- lisp/org-protocol.el | 11 +-- 1 fil

[O] Schedule next READY item under heading

2017-03-19 Thread Alex Branham
Hello - I asked this on stackexchange and didn't get an answer so I figure that I would try here, apologies for cross-posting. I have a situation where I have a lot of similar tasks under a header like so: * Header ** READY Task 1 ** NREADY Task 2 ** READY Task 3 ** READY Task 4 ** NREADY

[O] Bug: Errors when saving from babel block [9.0.5 (9.0.5-elpa @ ~/.emacs.d/elpa/org-20170210/)]

2017-03-19 Thread Alex Branham
In the latest org release (9.0.5), I get errors when trying to save a buffer while editing inside a babel source block. I can reproduce this using Emacs 25.1 and 25.2rc2. Using: emacs -Q -l ~/org-debug.el where org-debug.el just consists of (package-initialize) since I've previously