Re: [O] Detect parent with SCHEDULED or DEADLINE

2016-04-13 Thread Adam Porter
Hi again Christophe, This patch seems to fix it in the current master. Please note, I am not qualified to patch Org directly, so this should be reviewed by those who know what they're doing. But it may at least fix it for you or be a starting point for fixing it. >From

Re: [O] Detect parent with SCHEDULED or DEADLINE

2016-04-13 Thread Adam Porter
Hi Christophe, I'm still using Org 8.2.4 from Ubuntu Trusty (I'll upgrade Org one of these days...), and I tested your code, and it seems to work properly. For example, testing on this tree: #+BEGIN_SRC org * Test tree ** TODO Parent todo DEADLINE: <2016-04-15 ven.> :PROPERTIES: :ParentProp:

Re: [O] Problem with org-timestamp-up and timezones

2016-04-13 Thread Jesse
Eric Abrahamsen ericabrahamsen.net> writes: > > Hey, I just tried using org-shiftup on a timestamp, and got the > following traceback. I'm using the Org package, and Emacs master from > git. I too am experiencing this issue under the same conditions (Emacs master + MELPA org 20160411). My

Re: [O] Screenshot of agenda: agenda is not shown in time

2016-04-13 Thread Adam Porter
Hi Karl, This seems strange to me too. I tested your code and found that the screenshot always showed the pre-agenda state of the frame, showing the lisp window at the top and the helm-M-x window at the bottom, the way it looked when I hit RET to run the command. However, I tried stepping

Re: [O] exporting a header with a link does not export the link

2016-04-13 Thread Samuel Wales
thank you.

[O] Detect parent with SCHEDULED or DEADLINE

2016-04-13 Thread Christophe Schockaert
Hi fellow org-moders, I am seeking to list all actions in "NEXT" state that are not planned yet (scheduled, deadline or planning tag such as WEEK, MONTH, and other well known :). I will consider as planned an action which is in a subtree of a parent action which is itself planned. That's easy

Re: [O] [BUG] Capture template table line specification

2016-04-13 Thread Nicolas Goaziou
Hello, Christian Moe writes: > Yes, apologies. Here's a fairly minimal example. In making it, I > discovered that capture works until I add the table-formula line. With > the formula, it fails as described below. > > Yours, > Christian > > #+title: Capture test > >

Re: [O] exporting a header with a link does not export the link

2016-04-13 Thread Nicolas Goaziou
Hello, Samuel Wales writes: > a header with a link on it does not get exported, at least not to > ascii, in maint. Fixed. Thank you. Regards, -- Nicolas Goaziou

[O] Screenshot of agenda: agenda is not shown in time

2016-04-13 Thread Karl Voit
Hi! I'd like to get a screenshot (PNG) of an agenda of mine by following snippet: (defun my-export-month-agenda-to-png-via-screenshot() (interactive) (org-agenda nil "n") ; generates agenda "n" (one month without todos) (if (my-buffer-exists "*Org Agenda*") (switch-to-buffer "*Org

Re: [O] [OT] A new web browser‽

2016-04-13 Thread Haider Rizvi
Ramon Diaz-Uriarte writes: > For me Conkeror works just great most of the time. But the main problem > (for me) is that some of the extensions of Firefox will not work with > Conkeror. Yes, well aware of the extensions issue. Since I had no solution, I started looking at it

Re: [O] toc isn't generated in a latex export

2016-04-13 Thread Sharon Kimble
John Hendy writes: > On Apr 13, 2016 07:25, "Sharon Kimble" wrote: >> >> >> I'm working on a file which is then exported to latex, and if I have - >> >> #+OPTIONS: H:2 num:nil toc:t \n:nil ::t |:t ^:t f:t tex:t >> >> the sections don't have

Re: [O] [OT] A new web browser‽

2016-04-13 Thread Hauke Rehfeld
Opera (when they were still using their own engine) had a lot of quite useful UI features, and could open hundreds of tabs without much slowdown. In the chrome port, they were back to basic chrome features, and even right now (after how many years?) it's not very different from using a

[O] Bug: Problem with LaTeX export, footnotes in table headers, and longtabu [8.3.4 (8.3.4-31-gcb683e-elpa @ /home/berhol/.emacs.d/elpa/org-20160404/)]

2016-04-13 Thread Berthold Höllmann
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

Re: [O] Add caching to org-buffer-property-keys

2016-04-13 Thread Antoine R. Dumont
eniotna writes: > Hello, > >> I'm sure, it's only a small error of mine. > > Replace `(mapcar #'list (org-entry-properties nil nil))` by > `(org-entry-properties nil nil)` in your `org-read-entry-property-name` > definition: > > ``` > (defun org-read-entry-property-name () >

Re: [O] BUG: preview latex with split environment

2016-04-13 Thread Varius Various
Andreas Leha writes: >Nicolas Goaziou writes: >> Hello, >> >> Andreas Leha writes: >> >>> I open this file: >>> >>> #+TITLE: Test amsmath's split >>> >>> * Some equation >>> with some split expression, e.g. >>> \begin{equation} >>>

Re: [O] BUG: preview latex with split environment

2016-04-13 Thread Varius Various
Never mind, the problem was me trying to invoke `org-preview-latex-fragment' somewhere inside the equation, but when I'm doing it outside - it works. Sorry about the noise.

Re: [O] Org-mode export doesn't work anymore after moving to OsX

2016-04-13 Thread Jeffrey Spencer
How do I change the below to load for example: ~/Dropbox/kitchingroup/jmax/ instead of the current directory the init.el file is in. Then I can link init.el to .emacs.d and I think all will work properly. (defconst starter-kit-dir (file-name-directory (or load-file-name (buffer-file-name

Re: [O] toc isn't generated in a latex export

2016-04-13 Thread Marcin Borkowski
On 2016-04-13, at 12:24, Sharon Kimble wrote: > I'm working on a file which is then exported to latex, and if I have - > > #+OPTIONS: H:2 num:nil toc:t \n:nil ::t |:t ^:t f:t tex:t > > the sections don't have leading numbers but there isn't a table of > contents. > >

Re: [O] special blocks require whitespace

2016-04-13 Thread Eric S Fraga
On Wednesday, 13 Apr 2016 at 12:48, pray...@unimelb.edu.au wrote: > This is probably documented somewhere but I was surprised that I > needed to add some white space in order to get special blocks > recognized as such. Your example works fine for me. -- : Eric S Fraga (0xFFFCF67D), Emacs

[O] Row reference for :table-line-pos in a capture template.

2016-04-13 Thread leho.y...@gmail.com
hello, I'm trying to use :table-line-pos in a capture template. I want add new line just after the third hline in the table. I try "III" "III+" "III+1" "4"... Any ideas? this is the line in my org-capture-templates : ("X" "Test" table-line (file+headline

Re: [O] Bug: typo in [[info:org#Tag hierarchy]] [8.3.4 (8.3.4-34-gacfd41-elpa @ /home/jorge/.emacs.d/elpa/org-20160411/)]

2016-04-13 Thread Nick Dokos
Nicolas Goaziou writes: > Hello, > > Nick Dokos writes: > >> The paragraph is in need of some editing, but I think some of the @ signs are >> wrong: they are used as escapes in the texi file and a couple of them >> are missing. I attach a patch but it

Re: [O] [BUG] Capture template table line specification

2016-04-13 Thread Christian Moe
Hello, Yes, apologies. Here's a fairly minimal example. In making it, I discovered that capture works until I add the table-formula line. With the formula, it fails as described below. Yours, Christian #+title: Capture test #+begin_src emacs-lisp (setq org-capture-templates '(("x"

Re: [O] toc isn't generated in a latex export

2016-04-13 Thread John Hendy
On Apr 13, 2016 07:25, "Sharon Kimble" wrote: > > > I'm working on a file which is then exported to latex, and if I have - > > #+OPTIONS: H:2 num:nil toc:t \n:nil ::t |:t ^:t f:t tex:t > > the sections don't have leading numbers but there isn't a table of > contents. >

Re: [O] Org-mode export doesn't work anymore after moving to OsX

2016-04-13 Thread John Kitchin
That is done automatically if you run it like: emacs -q -l /path/to-init.el the jmax directory is stored at load time (https://github.com/jkitchin/jmax/blob/master/init.el#L16) and the variable is used every where else that is needed. alternatively, you might try (with your path obviously) in

[O] special blocks require whitespace

2016-04-13 Thread prayner
This is probably documented somewhere but I was surprised that I needed to add some white space in order to get special blocks recognized as such. Here is a simple example: #+Options: num:nil toc:nil #+TITLE: #+AUTHOR: #+BEGIN_CENTER this is not handled correctly #+END_CENTER #+BEGIN_CENTER

[O] toc isn't generated in a latex export

2016-04-13 Thread Sharon Kimble
I'm working on a file which is then exported to latex, and if I have - #+OPTIONS: H:2 num:nil toc:t \n:nil ::t |:t ^:t f:t tex:t the sections don't have leading numbers but there isn't a table of contents. What I'm looking for is no leading numbers but a table of contents. How can I achieve

Re: [O] Org-mode export doesn't work anymore after moving to OsX

2016-04-13 Thread Jeffrey Spencer
Well I installed emacs as you did and still didn't work but if I use your configuration file it works fine and exports. I like the features for org-mode so I might merge some of the things in my setup files and just use your configuration. What's the best way to get it as the default on macbook? I

Re: [O] [BUG] Capture template table line specification

2016-04-13 Thread Nicolas Goaziou
Hello, Christian Moe writes: > Another odd problems after updating to Emacs 24.5 and Org > 8.3.4: > > I have a capture template that puts the captured info into a table line > before the second horizontal line of the table. > > Capture fails with this message: > > Capture

Re: [O] [OT] A new web browser‽

2016-04-13 Thread Ramon Diaz-Uriarte
Dear Haider, On Tue, 12-04-2016, at 19:53, Haider Rizvi wrote: > Eric Abrahamsen writes: > >> I've been using Conkeror (based on Xulrunner/Firefox) for a while >> now, and like it enough to stick with it. It's completely keyboard >> driven, which I

[O] latex preview in latex block

2016-04-13 Thread Jérémie Juste
Hello, > > Jérémie Juste writes: > >> Is it possible to activate the latex preview in org-mode within in latex >> bloc? Nicolas Goaziou writes: > > It isn't possible out of the box. Org doesn't look at the contents of > src blocks, which are

Re: [O] [OT] A new web browser‽

2016-04-13 Thread Ramon Diaz-Uriarte
On Mon, 11-04-2016, at 13:56, Eric Abrahamsen wrote: > Ramon Diaz-Uriarte writes: > >> On Mon, 11-04-2016, at 10:12, Marcin Borkowski wrote: >>> On 2016-04-11, at 06:37, Adam Porter wrote: >>> Eric

[O] Update to helm-org-rifle

2016-04-13 Thread Adam Porter
Just a note to let you all know that I've updated helm-org-rifle: https://github.com/alphapapa/helm-org-rifle I added commands to search directories and files (as opposed to only open buffers). This should be useful for users who don't keep all of their Org files open, or who use smaller Org

Re: [O] feature request: exporting TBLFM line, formatted or not

2016-04-13 Thread Eric S Fraga
On Tuesday, 12 Apr 2016 at 20:15, Nicolas Goaziou wrote: > You can write a custom back-end. All the TBLFM information is stored in > the table element. Thanks for the suggestion. I will explore this option. -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.92.1, Org release_8.3.4-705-g716e33

[O] Problem with org-timestamp-up and timezones

2016-04-13 Thread Eric Abrahamsen
Hey, I just tried using org-shiftup on a timestamp, and got the following traceback. I'm using the Org package, and Emacs master from git. Let me know if I should dig deeper! Debugger entered--Lisp error: (error "Invalid time zone specification" (nil nil nil)) encode-time(0 0 0 14 4 2016