[O] Bug: Multiple bulk actions on the same task fails [9.0.5 (9.0.5-elpaplus @ /Users/links_world/.emacs.d/elpa/org-plus-contrib-20170210/)]

2017-03-27 Thread Adrian Bradd
Using the following agenda file as an MWE: * Incoming ** TODO Testing1 ** TODO Testing2 ** TODO Testing3 I ran org-agenda and pressed 't' to list all todo items. In the agenda buffer I marked the task 'Testing1' with 'm' and performed a bulk action with 'B' and added a tag with '+'. This

[O] Bug: Filtering agenda by top parent headline causes emacs to hang [9.0.5 (9.0.5-elpaplus @ /Users/links_world/.emacs.d/elpa/org-plus-contrib-20170210/)]

2017-03-09 Thread Adrian Bradd
Running deafult agenda (M-x org-agenda followed by a) and then sorting by top parent headline (^) causes emacs to hang. Expected agenda to filter entries based on top parent headline. Hanging isn't specific to a top parent headline. Emacs : GNU Emacs 25.1.1 (x86_64-apple-darwin16.4.0, NS

Re: [O] Bug: Filtering agenda by top parent headline causes emacs to hang [9.0.5 (9.0.5-elpaplus @ /Users/links_world/.emacs.d/elpa/org-plus-contrib-20170210/)]

2017-03-11 Thread Adrian Bradd
Hi, Nicolas Goaziou writes: > I guess you have an agenda file where a top level headline starts at > level 2 or below. Seems that is the issue. I accidentally deleted the first portion of one of my agenda files. The following agenda file causes the problem: TODO

Re: [O] Bug: Filtering agenda by top parent headline causes emacs to hang [9.0.5 (9.0.5-elpaplus @ /Users/links_world/.emacs.d/elpa/org-plus-contrib-20170210/)]

2017-03-10 Thread Adrian Bradd
Hi, Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > Hello, > > Adrian Bradd <adrian.br...@gmail.com> writes: > >> Running deafult agenda (M-x org-agenda followed by a) and then sorting >> by top parent headline (^) causes emacs to hang. Expected agen

[O] Handling tasks that span multiple projects

2017-03-05 Thread Adrian Bradd
Hello, I have seen examples of GTD or GTD-like workflows that use a project based management system like below: * Project 1 ** Tasks * Project 2 ** Tasks * Tasks * Incoming In my work I typically encounter a task that is common to multiple projects. I haven't found any example of how to handle

[O] org-depend new features

2017-07-14 Thread Adrian Bradd
Hi, There was a discussion some time ago about adding some new features to org-depend [1]. I'm not sure if anyone else is looking into this, but I have started on trying to implement some of the features summarized in [2]. I have multi-file TRIGGER and BLOCKER task actions working. My working

Re: [O] [PATCH] org-depend: multi-file TRIGGER and BLOCKER tasks

2017-07-29 Thread Adrian Bradd
I have attached an amended version. Let me know if there are any other changes that need to be made. From d18f299c2dfe3610e04b156d08a70ddafb052ab2 Mon Sep 17 00:00:00 2001 From: Adrian Bradd <adrian.br...@gmail.com> Date: Thu, 13 Jul 2017 22:49:26 -0400 Subject: [PATCH] contrib/lisp/org-dep

[O] [PATCH] org-depend: multi-file TRIGGER and BLOCKER tasks

2017-07-27 Thread Adrian Bradd
Adds multi-file TRIGGER and BLOCKER tasks to org-depend by first searching the current file `org-find-entry-with-id` and then all files visisble through `org-find-id`. From d4095a57f1c9c42426d8c0d51ca7f4640f036a3a Mon Sep 17 00:00:00 2001 From: Adrian Bradd <adrian.br...@gmail.com> Date: T

Re: [O] make compile fails

2017-08-19 Thread Adrian Bradd
Looks like htmlize was removed from contrib a few days ago (commit d0ced9894) which is probably the cause of your issue. You can get it from https://github.com/hniksic/emacs-htmlize You can generate a new local.mk by running 'make local.mk'. You may have to remove or rename the existing local.mk

Re: [O] Old 'C-c tab' binding shadowed

2017-09-09 Thread Adrian Bradd
I also use this keybinding for opening subtrees to certain depths. My reasoning is identical to Marco's, it provides a great overview with very little noise. Would be nice to have these actions context dependent in org so we get the best of both worlds. Failing that, Kaushal's setup looks like a

Re: [O] org-agenda-skip-function does not find inherited tags

2017-09-10 Thread Adrian Bradd
Thanks for the pointers. This is what I came up with: (defun abradd-agenda-tags-inherited (tags) (let (beg end m) (org-back-to-heading t) (setq beg (point) end (progn (outline-next-heading) (1- (point (goto-char beg) (and (not (member tags (org-get-tags-at)))

Re: [O] Beamer_act property is misnamed in org-mode Ubuntu package

2017-10-01 Thread Adrian Bradd
I can reproduce this if I have something like the following in the preamble: #+COLUMNS: %45ITEM %10BEAMER_ENV(Env) %10BEAMER_ACT(Act) %4BEAMER_COL(Col) %8BEAMER_OPT(Opt) org-set-property seems to be extracting these settings for use as heading properties. Removing this line also removes the

[O] Consolidated capture tagets on master not in ORG-NEWS

2017-08-26 Thread Adrian Bradd
On master, capture targets were changed in commit 0f1b5ec496, but this change isn't reflected in ORG-NEWS. Not sure if this change was intended to go in the impending 9.1 release as I'm still unfamiliar with the release workflow. Happy to update ORG-NEWS if needed. Cheers, Adrian

[O] org-agenda-skip-function does not find inherited tags

2017-09-04 Thread Adrian Bradd
Hello, I have the following custom agenda command: (setq org-agenda-custom-commands '(("ww" "Work 2 day view" ((agenda "" ((org-agenda-files '("~/tmp/tmp.org")) (org-agenda-skip-function '(org-agenda-skip-entry-if 'notregexp ":@work:"))

Re: [O] Help with org related crash on OpenBSD

2017-10-17 Thread Adrian Bradd
Sorry for the repeat. Forgot to copy the list the first time. ​Instrumenting 'org-capture' with edebug might be of some assistance. This should at least allow you to step through org-capture and see where emacs is hanging. HTH On 13 October 2017 at 12:51, Aaron Bieber

[O] Custom agenda with tags-todo and shorthand todo specification ignored if hypen present in TODO state

2017-11-28 Thread Adrian Bradd
Hi, I have the following in my custom block agenda to sort for work tags that are in progress: (tags-todo "@work+TODO=\"IN-PROGRESS\"" ((org-agenda-overriding-header "\nIn progress tasks\n-\n"))) (tags-todo "@work/IN-PROGRESS" ((org-agenda-overriding-header "\nIn progress

Re: [O] [RFC] Dog food, anyone?

2017-12-17 Thread Adrian Bradd
Thanks for this. I think having the manual in org format is a great idea. Thomas S. Dye writes: > My concern is with the time between a working manual.org and when it > becomes the official source. IIRC, I wasn't able to get a commitment to > make manual.org the official

[O] org-set-tags-command and org-agenda-set-tags not displaying minibuffer with org-tag-alist options

2017-11-03 Thread Adrian Bradd
Hello, When updating from commit 2567fee3c90 to HEAD on maint I noticed that the minibuffer that displays `org-tag-alist' shortcuts when running `org-set-tags-command' or `org-agenda-set-tags' doesn't show up anymore. Instead I get a prompt with a list of tags below it. I haven't had a chance

Re: [O] org-set-tags-command and org-agenda-set-tags not displaying minibuffer with org-tag-alist options

2017-11-03 Thread Adrian Bradd
​After further investigation this issue disappeared.​ Checked out and built b5f075aa05244b and had no issues. Sorry for the noise, Adrian On 3 November 2017 at 10:11, Adrian Bradd <adrian.br...@gmail.com> wrote: > Hello, > > When updating from commit 2567fee3c90 to HEAD on

Re: [O] org-depend: TRIGGER XYZ(KEYWORD) not working

2017-12-03 Thread Adrian Bradd
Hi Karl, > Examples: > > * Top-Heading > > ** TODO Here I invoke org-todo to DONE > :PROPERTIES: > :TRIGGER: 2017-12-03-target(TODO) > :END: > > ** This should be changed to TODO > :PROPERTIES: > :ID: 2017-12-03-target > :END: > > ... this is working

Re: [O] org-depend: TRIGGER XYZ(KEYWORD) not working

2017-12-05 Thread Adrian Bradd
​Hi Karl,​ This is because I removed the wrong progress indicator from my > examples before posting. You have to change all "[0/2]" with "[%]" > and then you see the issue I described. It seems to be the case that > [/] do work whereas [%] do cause the described malfunctional > behaviour. I was

[O] BUG: TODO statistics in parent heading prevent evaluation of TODOs with TRIGGER property

2017-12-10 Thread Adrian Bradd
Hi, Please see the patch attached. When completing a TODO with a TRIGGER property that has statistics in the parent headline the trigger would not evaluate because the :position property in `change-plist' may now refer to the line above the original TODO. I have used a marker to avoid the issue

Re: [O] BUG: TODO statistics in parent heading prevent evaluation of TODOs with TRIGGER property

2017-12-10 Thread Adrian Bradd
cember 2017 at 16:53, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Adrian Bradd <adrian.br...@gmail.com> writes: > > > Please see the patch attached. > > > > When completing a TODO with a TRIGGER property that has statistics in the > >

Re: [O] BUG: TODO statistics in parent heading prevent evaluation of TODOs with TRIGGER property

2017-12-10 Thread Adrian Bradd
I should probably add that this will require org-depend.el to be loaded. On 10 December 2017 at 17:50, Adrian Bradd <adrian.br...@gmail.com> wrote: > Hello, > > ECM: > > * Top-Heading with process indicator [/] > > ** TODO Here I invoke org-todo to DONE > :PROPE

Re: [O] using org-global-properties in capture templates

2017-12-02 Thread Adrian Bradd
Hello, It looks like you have one too many parenthesis around the Rating entry. org-global properties is supposed to be a list of cons cells. The below should work: #+BEGIN_SRC elisp (setq org-global-properties '(("Cuisine_ALL". "- Indian Thai Vietnamese Asian Chinese Israeli Italian American

Re: [O] org-depend: TRIGGER XYZ(KEYWORD) not working

2017-12-03 Thread Adrian Bradd
Hi, First observation: > > When I set the heading 1 to DONE (without assigning it any other > keyword), the TRIGGER events are ignored totally. I guess this is > an edge-case that may be considered as a bug. > ​This is the result of Line 219 in org-depend.el: (unless (and (member from

Re: [O] [POLL] Should Org tempo be enabled by default? (expand templates thru e.g. "<s[TAB]")

2018-05-05 Thread Adrian Bradd
I remember that Magit experimented displaying a message the first time you used a new release; you would silence it only by setting a variable. I don't think this is the case anymore, so it may have failed, though. I believe this was for the Magit Kickstarter fundraiser. A message was

Re: [O] BUG: TODO statistics in parent heading prevent evaluation of TODOs with TRIGGER property

2017-12-25 Thread Adrian Bradd
Just wanted to bump this. Let me know if there is a preferred/better way to attack this issue and I can give it a shot. Cheers, Adrian Adrian Bradd <adrian.br...@gmail.com> writes: > I should probably add that this will require org-depend.el to be loaded. > > On 10 Decembe

Re: [O] advice please: best way to export to DOC(X) with maths

2017-12-25 Thread Adrian Bradd
According to Karl's post [1], pandoc now supports conversion with some template support. I haven't tried it myself though. Cheers, Adrian [1] http://www.karl-voit.at/2017/12/17/pandoc-docx-reference/ Tim O'Callaghan writes: > Thanks! > I will experiment with this work-flow,

[O] [BUG] Convert heading with no content to item fails

2018-03-10 Thread Adrian Bradd
Hello, On master (commit: 51b339105), attempting to convert a blank headline to an item with `org-ctrl-c-minus' removes the space after the * and org no longer recognizes it as a heading. I believe this issue originated in commit 69c5b6c99. Some code was added to strip metadata during the

Re: [O] How to add tblname from ob-shell fragments?

2018-10-11 Thread Adrian Bradd
-to-figures-and-tables-from-code-blocks-in-org-mode/ Cheers, -- Adrian Bradd

Re: [O] Skipping the SUBTREE visibility state

2018-10-11 Thread Adrian Bradd
. I use this with org-datetree formatted buffers when I want to view headings from all days in a month. Cheers, -- Adrian Bradd

Re: [O] Branch "next" garbled

2018-10-11 Thread Adrian Bradd
er (https://orgmode.org/worg/dev/index.html). Cheers, -- Adrian Bradd

[O] Purpose of and documentation for the next branch (was: Re: Branch "next" garbled)

2018-10-11 Thread Adrian Bradd
t on top of "master". So the next branch is a temporary replacement for master while master is frozen awaiting a release? It might be worth the effort to document the role of the "next" branch somewhere. Perhaps on the worg developer page? Adrian Bradd writes: H

Re: [O] Beamer footnote to definition term printed twice

2018-09-22 Thread Adrian Bradd
to beamer. Cheers, -- Adrian Bradd

[O] Unable to instrument `org-export-data' using `edebug-defun'

2018-09-22 Thread Adrian Bradd
m not sure if this is user error or a bug. Cheers, -- Adrian Bradd

Re: [O] Unable to instrument `org-export-data' using `edebug-defun'

2018-09-22 Thread Adrian Bradd
on Ubuntu and the issue has been rectified. Thanks for the assistance. -- Adrian Bradd

[O] Custom checkboxes when exporting to beamer/latex

2018-09-26 Thread Adrian Bradd
. Suggestions welcome. -- Adrian Bradd

Re: [O] newbie which LaTeX for PDF publish

2018-09-25 Thread Adrian Bradd
of varying sizes (small, medium, full etc.). I usually use the medium or full, but any package is just a 'tlmgr install' away (incl. pdftex). Cheers, -- Adrian Bradd

Re: [O] org-mime-htmlize gives JSON readtable error

2018-09-25 Thread Adrian Bradd
Bit of a late response here, but if you are using ob-ipython it now uses 'jupyter' instead of 'ipython' and installing jupyter resolves the issue of random json readtable errors for me. The error would turn up in unrelated locations like org-capture as well. Cheers, -- Adrian Bradd

Re: [O] Unable to instrument `org-export-data' using `edebug-defun'

2018-09-22 Thread Adrian Bradd
I'll post to emacs-devel and see what they think. Cheers, -- Adrian Bradd

Re: [O] Bug: org-agenda-filter-by-top-heading does not filter [9.1.14 (release_9.1.14-908-gf1269e)]

2018-09-22 Thread Adrian Bradd
al example if you filter a task that has a top headline in f1.org of "Root" it would also present tasks under the "Root" headline from f2.org. Cheers, -- Adrian Bradd

Re: [O] blank lines after every capture

2018-12-31 Thread Adrian Bradd
after every capture, regardless, in the new 9.2 release? seems it doesn't matter what you do, even if you do whitespace cleanup in a hook. blank lines keep getting added. is this something obvious? i did not change anything from 9.1. -- Adrian Bradd

Re: [O] Is is possible to summarize contents of a task in the agenda headings?

2019-05-08 Thread Adrian Bradd
This post doesn't seem to be exactly what you want, but it might have some details to help you modify the org-agenda view to your liking. https://www.reddit.com/r/emacs/comments/8wohqz/completely_custom_orgagenda_with_support_for_gtd/ Cheers, -- Adrian Bradd