Re: [O] :minlevel for columnview dynamic block

2015-11-18 Thread Joon Ro
> > Fixed. Thank you. > Thank you so much for the quick fix! It now works perfectly. Best,Joon

Re: [O] Exporting a subtree

2015-11-18 Thread Peter Davis
On Wed, Nov 18, 2015, at 05:30 PM, John Hendy wrote: > On Wed, Nov 18, 2015 at 2:43 PM, Peter Davis wrote: > > John Hendy writes: > > > >> On Wed, Nov 18, 2015 at 2:29 PM, Peter Davis wrote: > >>> > >>> For the first time, I'm trying to export just a single subtree of my > >>> overall document,

Re: [O] long running processes

2015-11-18 Thread Tom
On Wed, Nov 18, 2015 at 2:55 PM, John Kitchin wrote: > I am pretty sure this is not directly possible right now. > > Some approaches that resemble it could be: > 1. write a src block that will be tangled to a script. > 2. tangle the block > 3. Run the script in a shell src block with an & so it r

Re: [O] images rendering after execution?

2015-11-18 Thread John Kitchin
I use this in my init files: ;; refresh images after running a block (defun org-refresh-images () "Refreshes images displayed inline." (interactive) (org-remove-inline-images) (org-display-inline-images)) (add-hook 'org-babel-after-execute-hook (lambda () (org-refresh-images)))

Re: [O] long running processes

2015-11-18 Thread John Kitchin
I am pretty sure this is not directly possible right now. Some approaches that resemble it could be: 1. write a src block that will be tangled to a script. 2. tangle the block 3. Run the script in a shell src block with an & so it runs non-blocking. or, use an elisp block like: (org-babel-tangle

Re: [O] :minlevel for columnview dynamic block

2015-11-18 Thread Nicolas Goaziou
Hello, Joon Ro writes: > I found that skip-empty-rows works correctly only if ITEM is in the > COLUMNS property. Here is an ECM :). As you can see, when ITEM is not > included in COLUMNS property, it generates an empty line for the > parent heading. > > * Columnview with ITEM in columns:PROPERTI

Re: [O] Exporting a subtree

2015-11-18 Thread John Hendy
On Wed, Nov 18, 2015 at 2:43 PM, Peter Davis wrote: > John Hendy writes: > >> On Wed, Nov 18, 2015 at 2:29 PM, Peter Davis wrote: >>> >>> For the first time, I'm trying to export just a single subtree of my >>> overall document, by typing >>> >>> C-c C-e C-s H O >>> >>> However, I get this erro

Re: [O] Exporting a subtree

2015-11-18 Thread Nick Dokos
John Hendy writes: > On Wed, Nov 18, 2015 at 2:29 PM, Peter Davis wrote: >> >> For the first time, I'm trying to export just a single subtree of my overall >> document, by typing >> >> C-c C-e C-s H O >> >> However, I get this error: >> >> apply: Wrong type argument: listp, #("Details, November

Re: [O] Exporting a subtree

2015-11-18 Thread Peter Davis
John Hendy writes: > On Wed, Nov 18, 2015 at 2:29 PM, Peter Davis wrote: >> >> For the first time, I'm trying to export just a single subtree of my overall >> document, by typing >> >> C-c C-e C-s H O >> >> However, I get this error: >> >> apply: Wrong type argument: listp, #("Details, November

Re: [O] Exporting a subtree

2015-11-18 Thread John Hendy
On Wed, Nov 18, 2015 at 2:29 PM, Peter Davis wrote: > > For the first time, I'm trying to export just a single subtree of my overall > document, by typing > > C-c C-e C-s H O > > However, I get this error: > > apply: Wrong type argument: listp, #("Details, November 2015" 0 22 (:parent > (#0))) >

[O] Exporting a subtree

2015-11-18 Thread Peter Davis
For the first time, I'm trying to export just a single subtree of my overall document, by typing C-c C-e C-s H O However, I get this error: apply: Wrong type argument: listp, #("Details, November 2015" 0 22 (:parent (#0))) The portion in quotes is the overall title of my document. Should th

[O] long running processes

2015-11-18 Thread Tom
When I run Python code in a session from Org mode and the execution takes a while, the cursor changes to a wait cursor. In addition, the session window doesn't display any intermediate output until the execution has finished. Is there any way of changing this behavior? I would like to start long-r

[O] images rendering after execution?

2015-11-18 Thread Tom
I know I can insert an image with something like: #+begin_src python :session :results file savefig('test.png') 'test.png' #+end_src #+RESULTS: [[file:test.png]] However, even when I choose to display images inline, the output from a computation like this will always be rendered as a link; only

Re: [O] Using orgstruct-mode (or just org-cycle) in emacs-lisp-mode

2015-11-18 Thread Jonas Bernoulli
Nicolas Goaziou writes: > Hello, > > Jonas Bernoulli writes: > >> Thanks. But could you please change it to >> >> (if (or outline-minor-mode orgstruct-mode) >> (call-interactively #'show-children) >> ...) > > You could set `orgstruct-mode' to a non-nil value whenever > `outline-min

Re: [O] Emacs+org-mode in a Docker?

2015-11-18 Thread Alexey Lebedeff
Hi, I'm using emacs/org in docker in non-interactive mode, for building documentation during CI process - https://github.com/binarin/docker-org-export Best, Alexey 2015-11-17 23:46 GMT+03:00 : > John Kitchin writes: > > > Has anyone tried setting up a Docker with an Emacs and org-mode setup? >