[O] [ox-latex] setting `org-latex-classes'

2015-07-21 Thread Seb
Hello, Does one have to `require' ox-latex in ~/.emacs just to set `org-latex-classes'? I can't seem to find the proper hook where I can add to this alist without loading ox-latex. Cheers, -- Seb

Re: [O] long code blocks making Org Mode very slow

2015-07-21 Thread Grant Rettke
When I have the cursor inside of the code block for the code, moving up or done one line or one page takes 2-3 seconds. Grant Rettke -- g...@wisdomandwonder.com | http://www.wisdomandwonder.com/ “Wisdom begins in wonder.” --Socrates “All creativity is an extended form of a joke.” --Kay ((λ (x) (x

Re: [O] Indicate on collapsed code block if in editing mode

2015-07-21 Thread Grant Rettke
Very personal preference: I set `org-src-window-setup' to `'current-window' to avoid that. Grant Rettke -- g...@wisdomandwonder.com | http://www.wisdomandwonder.com/ “Wisdom begins in wonder.” --Socrates “All creativity is an extended form of a joke.” --Kay ((λ (x) (x x)) (λ (x) (x x))) “Life has

Re: [O] Query on TODO headers for specific words

2015-07-21 Thread Xebar Saram
Thats exactly what i was looking for. does anyone know or show me an example of how to create a org-agenda-custom-commands with the 'S' from above where i would go C-a 'x' and it would auto search all TODO headers for a custom string? thx so much! Z On Tue, Jul 21, 2015 at 6:10 PM, Jorge A.

Re: [O] [ox-latex] setting `org-latex-classes'

2015-07-21 Thread Nick Dokos
Seb splu...@gmail.com writes: Does one have to `require' ox-latex in ~/.emacs just to set `org-latex-classes'? I can't seem to find the proper hook where I can add to this alist without loading ox-latex. Use eval-after-load: (eval-after-load ox-latex (add-to-list 'org-latex-classes

Re: [O] [ox-latex] setting `org-latex-classes'

2015-07-21 Thread Seb
On Tue, 21 Jul 2015 13:37:39 -0400, Nick Dokos ndo...@gmail.com wrote: [...] Use eval-after-load: (eval-after-load ox-latex (add-to-list 'org-latex-classes )) Thanks, I tried that but I get a Symbol's value as variable is void: org-latex-classes when starting Emacs. -- Seb

Re: [O] [ox-latex] setting `org-latex-classes'

2015-07-21 Thread Rasmus
Seb splu...@gmail.com writes: On Tue, 21 Jul 2015 13:37:39 -0400, Nick Dokos ndo...@gmail.com wrote: [...] Use eval-after-load: (eval-after-load ox-latex (add-to-list 'org-latex-classes )) Thanks, I tried that but I get a Symbol's value as variable is void: org-latex-classes when

Re: [O] New Org-HTML-theme!!

2015-07-21 Thread Thomas S . Dye
Yes, I agree. Extremely useful. Tom Grant Rettke g...@wisdomandwonder.com writes: Very nice. Grant Rettke -- Thomas S. Dye http://www.tsdye.com

Re: [O] org-version N/A when using git subtree

2015-07-21 Thread Grant Rettke
Generate autoloads with out make? http://orgmode.org/worg/org-hacks.html Grant Rettke -- g...@wisdomandwonder.com | http://www.wisdomandwonder.com/ “Wisdom begins in wonder.” --Socrates “All creativity is an extended form of a joke.” --Kay ((λ (x) (x x)) (λ (x) (x x))) “Life has become

Re: [O] Plotting with gnuplot

2015-07-21 Thread Thomas S . Dye
Aloha Michael, Does the :session header argument help? All the best, Tom Michael Welle mwe012...@gmx.net writes: Hello, I have several sections in my org files that plot data with gnuplot. The structure usually looks like that: #+tblname: foo | d| y |

Re: [O] yasnippet babel template conflict

2015-07-21 Thread Grant Rettke
How did you end up resolving this? Grant Rettke -- g...@wisdomandwonder.com | http://www.wisdomandwonder.com/ “Wisdom begins in wonder.” --Socrates “All creativity is an extended form of a joke.” --Kay ((λ (x) (x x)) (λ (x) (x x))) “Life has become immeasurably better since I have been forced to

Re: [O] yasnippet babel template conflict

2015-07-21 Thread Ken Mankoff
On 2015-07-21 at 16:05, Grant Rettke g...@wisdomandwonder.com wrote: How did you end up resolving this? I've started using yasnippet more - more configurable and universal. I overrode the default org img snippet with my own in ~/.emacs.d/snippets/org-mode/img -k.

Re: [O] correlating positions between org-mode and export

2015-07-21 Thread Grant Rettke
Have you looked into customizing the exporter? Grant Rettke -- g...@wisdomandwonder.com | http://www.wisdomandwonder.com/ “Wisdom begins in wonder.” --Socrates “All creativity is an extended form of a joke.” --Kay ((λ (x) (x x)) (λ (x) (x x))) “Life has become immeasurably better since I have been

Re: [O] meta commands and Info manual

2015-07-21 Thread Nicolas Goaziou
Hello, Nick Dokos ndo...@gmail.com writes: I think what's puzzling is that these are not normal emacs keybindings (and therefore not discoverable using the normal emacs mechanisms): there is an extra level of indirection that org mode imposes which you just have to know about. But I'm not

Re: [O] Conditional .gitignore for org-mode files

2015-07-21 Thread Grant Rettke
Say you add ignore for all generated files like mentioned. That will cover what you need because you can `git add --force' file patterns that are on the ignore list. Grant Rettke -- g...@wisdomandwonder.com | http://www.wisdomandwonder.com/ “Wisdom begins in wonder.” --Socrates “All creativity is

Re: [O] New Org-HTML-theme!!

2015-07-21 Thread Grant Rettke
Very nice. Grant Rettke -- g...@wisdomandwonder.com | http://www.wisdomandwonder.com/ “Wisdom begins in wonder.” --Socrates “All creativity is an extended form of a joke.” --Kay ((λ (x) (x x)) (λ (x) (x x))) “Life has become immeasurably better since I have been forced to stop taking it

Re: [O] meta commands and Info manual

2015-07-21 Thread Nick Dokos
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Nick Dokos ndo...@gmail.com writes: I think what's puzzling is that these are not normal emacs keybindings (and therefore not discoverable using the normal emacs mechanisms): there is an extra level of indirection that org mode imposes

Re: [O] long code blocks making Org Mode very slow

2015-07-21 Thread Angus M
Post a Gist of your file so I can try it out. What is you value of `org-src-fontify-natively'? Grant Rettke -- gcr at wisdomandwonder.com | http://www.wisdomandwonder.com/ “Wisdom begins in wonder.” --Socrates “All creativity is an extended form of a joke.” --Kay ((λ (x) (x x)) (λ (x)

Re: [O] meta commands and Info manual

2015-07-21 Thread Suvayu Ali
On Mon, Jul 20, 2015 at 06:08:56PM -0400, Nick Dokos wrote: Or maybe showing the indirection explicitly: ‘M-S-right (org-shiftmetaright) -- (org-table-insert-column)’ Particularly this suggestion would be very helpful, even for long time Org users such as myself. -- Suvayu Open source

Re: [O] basename of exported subtree?

2015-07-21 Thread Suvayu Ali
Hi Matt, On Mon, Jul 20, 2015 at 02:12:17PM -0400, Matt Price wrote: Neither of these changed the actual file name, but Suvayu's euggestion -- setting the EXPORT_FILE_NAME property -- did the trick. Thank you both! I was unable to find this in the org documentation on my own, though now

[O] Query on TODO headers for specific words

2015-07-21 Thread Xebar Saram
Hi all this is probably a silly question, but whats the suggested/best way to search (or generate a list/agenda view) only for TODO marked headers contains a specific word. for a use case example, i want to show all TODO headers what have a colleague name in them ('Allan') thx Z

Re: [O] evaluate TBLFM

2015-07-21 Thread Grant Rettke
On Thu, Jun 11, 2015 at 2:45 PM, Charles Millar mill...@verizon.net wrote: I am learning how to use org-babel and want to export (LaTeX) a table with the final column added at final row, which should be inserted. The entire process would take place upon exporting to LaTeX/pdf Desired result

[O] [PATCH] make org-mime-htmlize argument optional

2015-07-21 Thread Matt Price
(resending in case improper subject line led to it being overlooked} At present, it's difficult to call org-mime-htmlize noninteractively. This trivial patch fixes that. From ebe5dc40bafb55d019d43efe89957c3b50379553 Mon Sep 17 00:00:00 2001 From: Matt Price matt.pr...@utoronto.ca Date: Sat, 18

Re: [O] [PATCH] make org-mime-htmlize argument optional

2015-07-21 Thread Rasmus
Matt Price mopto...@gmail.com writes: (resending in case improper subject line led to it being overlooked} Thanks. Pushed. I changed the wording a bit. -- The Kids call him Billy the Saint