Re: [O] Bug: org-agenda-list fails with "wrong-type-argument stringp nil" from org-agenda-skip [8.3.5 (8.3.5-elpaplus @ $HOME/.emacs.d/elpa/org-plus-contrib-20160801/)]

2016-08-10 Thread Kaushal Modi
FWIW I do not see this issue on the latest version of org on the master (dev) branch. Based on the backtrace, it looks like for some reason comment-start-skip is nil in your emacs session. Here's the definition of org-agenda-skip: (defun org-agenda-skip () "Throw to `:skip' in places that

Re: [O] Bug: When exporting to PDF an Org file where multiple footnotes share the same definition, only the first footnote is clickable [8.3.4 (8.3.4-39-ge0acd8-elpaplus @ /home/jorge/.emacs.d/elpa/or

2016-08-10 Thread Kaushal Modi
Hi guys, Looks like I just reported the exact same bug few minutes back. @Rasmus: Are you still working on committing the fix for this? Thanks. Kaushal On Mon, May 23, 2016 at 5:42 PM Nicolas Goaziou wrote: > Hello, > > Rasmus writes: > > > With the

[O] How can I get multiple references to the same footnote in org table [ox-latex]

2016-08-10 Thread Kaushal Modi
Hi, Here is a minimum working example: = | abcd | efgh[fn:1] | | ijkl | mnop[fn:1] | | qrst | uvwx | | y| z | * Footnotes [fn:1] Some interesting footnote = When I export it to PDF, this is the generated intermediate .tex file: = % Created 2016-08-10 Wed 16:59

Re: [O] Controlling exported Beamer quote indentation / width

2016-08-10 Thread Eric S Fraga
On Tuesday, 9 Aug 2016 at 09:05, Jarmo Hurri wrote: > Greetings. > > Currently in my Beamer slides quotes in second-level lists get cropped > outside the view window. Attached is a demo of this. How do I control > the indentation and/or the width of the quote? This is really a LaTeX question.

Re: [O] New package: ox-minutes [Please critique]

2016-08-10 Thread Kaushal Modi
On Wed, Aug 10, 2016 at 12:16 PM Oleh Krehel wrote: > Congrats on your first package! It will surely come in handy when > interacting with my less Emacs-enlightened colleagues. I recall one of > them writing very similar-looking notes in Microsoft Outlook. One or two > times I

Re: [O] How to run a command after exporting agenda to HTML?

2016-08-10 Thread Kaushal Modi
See if this helps: (defun my-org-html-post-process (file) "Do stuff on FILE after it is created by org html export." ;; Do your stuff here (message "Exported file: %s" file) file) ; Has to return FILE (defun my-org-html-export-to-html ( async subtreep visible-only body-only

Re: [O] New package: ox-minutes [Please critique]

2016-08-10 Thread Oleh Krehel
Kaushal Modi writes: > Hi all, > > I have never published a package. I generally write elisp snippets embedded > in my config. > > Here are my first attempts at a 'package' and defining a custom org > export backend. Congrats on your first package! It will surely come

Re: [O] :exports not being respected

2016-08-10 Thread Charles C. Berry
On Wed, 10 Aug 2016, Vikas Rawal wrote: I have a with just the following header, and it is not respecting :exports in my R source blocks. The pdf file created has source code as well as the results. What is wrong? No ECM with src blocks, but see below. Has the syntax changed again? I

[O] New package: ox-minutes [Please critique]

2016-08-10 Thread Kaushal Modi
Hi all, I have never published a package. I generally write elisp snippets embedded in my config. Here are my first attempts at a 'package' and defining a custom org export backend. The aim of this exporter to generate meeting minutes plain text that is convenient to send via email. -

Re: [O] Scaling of image previews in org-mode

2016-08-10 Thread John Kitchin
Certainly it could be adapted to other modes, at least for showing the images. If there was a way to parse resizing info, or set it via variables, you could also get resized images. The key is hooking into font-lock and detecting where images are. The basic framework is laid out here:

[O] tangling inline source code

2016-08-10 Thread Tyler Smith
Hello, A question came up on Stack Exchange asking about less-verbose ways to indicate code blocks: http://emacs.stackexchange.com/questions/26163/one-liner-org-source-tangle I suggested using the inline format, e.g., 'src_perl{set $variable = 1;}'. However, this is ignored when tangling the org

[O] How to run a command after exporting agenda to HTML?

2016-08-10 Thread Christopher DeMarco
Hi all . . . I want to run a command (to sync a directory with AWS S3) after my agenda views are exported to HTML. There used to be a `org-export-html-final-hook` which looks like something that could be helpful, but it doesn't appear to be available anymore. Is there a way to do this in current

Re: [O] Scaling of image previews in org-mode

2016-08-10 Thread Uwe Brauer
>>> "John" == John Kitchin writes: > I use this code here: > https://github.com/jkitchin/scimax/blob/master/scimax-org.el#L957 > to provide inline scaling in Emacs when it is not built with imagemagick. Hi Could that package or parts of it also be used in