[O] refile to only headers in the current subtree?

2016-05-08 Thread Samuel Wales
is it possible to set org-refile-targets so that the targets for refiling are restricted to the current header's parent and anything below that?

Re: [O] Bug: check that org-element--cache-sync-keys is non-nil before clrhash [8.3.4 (8.3.4-42-gae73c7-elpa @ /home/mah/.emacs.d/elpa/org-20160425/)]

2016-05-08 Thread Mark A. Hershberger
Nicolas Goaziou writes: > I'm surprised about this. Cache mechanism in available in Org mode > buffers only. Not even when using `orgstruct-mode' (see > 0b97a551704d50ae848c59d00b0d425554891e53). > > Could you investigate about how this happens in your case? I don't know, but I've seen it

[O] countdown timer to count up

2016-05-08 Thread Samuel Wales
i use the countdown timer to display a countdown in the mode line and to indicate when it has reached zero. can it, at that time, also start a countup timer in the mode line so i knw how much time it has been sicne it reached zero? if not, can anybody recommend some timer packages? thanks. --

Re: [O] Question on nested-blocks syntax

2016-05-08 Thread Rasmus
Nicolas Goaziou writes: >> Aside: I think a big getting rid of the FORTRAN-70 "touch" (capitalized >> keywords and delimiters) would make Org must more ascetically pleasing. >> (We’d just need to change default usage of templates and block >> capitalization). > > I guess

Re: [O] [BUG] Noweb reference eval syntax does not work

2016-05-08 Thread Thomas S. Dye
Aloha all, Rasmus writes: > >> What do you, and others, think? Is NAME enough for noweb syntax, or is >> there a real need fo :noweb-ref? > > I've put Aaron in carbon copy as he’s quite familiar with ob. The motivation for noweb-ref is discussed in this thread from about 5 years ago:

Re: [O] Mixing Python2 and Python3 blocks in one file

2016-05-08 Thread Karl Voit
* Karl Voit wrote: > Hi! > > Python2 and Python3 are two different languages. Unfortunately, > Org-mode only uses ~#+BEGIN_SRC python~ for both and uses > python-shell-interpreter to choose/switch the compiler. > > Shouldn't Org-mode introduce ~#+BEGIN_SRC python2~ and

[O] org-agenda-bulk-custom-functions Customize mismatch

2016-05-08 Thread Phil Hudson
Another defcustom mismatched with the code. At line 9962 of org-agenda.el (20160502 release) we have: (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions))) This assumes that `org-agenda-bulk-custom-functions` is a list-of-two-element-lists alist. Thus, the `cadr` form

Re: [O] Question on nested-blocks syntax

2016-05-08 Thread Nicolas Goaziou
Rasmus writes: > Nicolas Goaziou writes: > >> I sympathize with aesthetics concerns, Org syntax, particularly blocks, >> is "massive", but I think this is not a sufficient motivation here. > > I wonder what you mean by "massive" here? Do you mean the fact

Re: [O] [BUG] Noweb reference eval syntax does not work

2016-05-08 Thread Rasmus
Hi, Nicolas Goaziou writes: > fm4d writes: > >> The noweb reference syntax that should insert results of >> evaluation of src block itself instead of src block as >> described in `org-babel-expand-noweb-reference` does not >> seems to work. >> >> >> Code

Re: [O] how to org-refile to a target within the current file?

2016-05-08 Thread Peter Salazar
Here's the solution: (defun my-org-files-list () (delq nil (mapcar (lambda (buffer) (buffer-file-name buffer)) (org-buffer-list 'files t On Wed, May 4, 2016 at 1:20 PM, Peter Salazar wrote: > Hello, I use org-refile quite a bit, but for my use-case,

Re: [O] [BUG] Noweb reference eval syntax does not work

2016-05-08 Thread Nicolas Goaziou
Hello, fm4d writes: > The noweb reference syntax that should insert results of > evaluation of src block itself instead of src block as > described in `org-babel-expand-noweb-reference` does not > seems to work. > > > Code for replication: > > * Assign > > First we assign abc: >

[O] Mixing Python2 and Python3 blocks in one file

2016-05-08 Thread Karl Voit
Hi! Python2 and Python3 are two different languages. Unfortunately, Org-mode only uses ~#+BEGIN_SRC python~ for both and uses python-shell-interpreter to choose/switch the compiler. Shouldn't Org-mode introduce ~#+BEGIN_SRC python2~ and ~#+BEGIN_SRC python3~ to solve this issue in a clean way?