[O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-10-04 Thread Xebar Saram
hi all so after struggling for weeks to figure out why i always get an error when exporting i finally nailed the issue: org-emphasis-alist. i have alot of them (see below) and use them in orgmode quite often. is this a bug or if you want to use the exporter you should avoid using

Re: [O] Getting rid of split frame with org-capture

2013-10-04 Thread Alan Schmitt
alexander.vorob...@gmail.com writes: I also wanted to have new pop-up org-capture window that would be created in response to some shortcut anywhere in Windows and occupied the entire frame. Since I haven't found any solutions, I just modified a function I saw in this thread: (defun

[O] How to build org-mode on Windows

2013-10-04 Thread Pascal Quesseveur
Hello, I want to install latest version but I understand it relies on make to compile. I am currently using Windows and I don't have cygwin and don't plan to install it. Is there any alternatives? -- Pascal Quesseveur pques...@gmail.com

Re: [O] How to build org-mode on Windows

2013-10-04 Thread Bastien
Hi Pascal, Pascal Quesseveur pques...@gmail.com writes: I want to install latest version but I understand it relies on make to compile. I am currently using Windows and I don't have cygwin and don't plan to install it. Is there any alternatives? The simple alternative is to simply *not*

Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-10-04 Thread Bastien
Hi Xebar, Xebar Saram zelt...@gmail.com writes: so after struggling for weeks to figure out why i always get an error when exporting i finally nailed the issue: org-emphasis-alist. i have alot of them (see below) and use them in orgmode quite often. is this a bug or if you want to use the

Re: [O] Limit subtree to a specific export backend

2013-10-04 Thread Sebastien Vauban
Hi Sebastian, Sebastian Wiesner wrote: 2013/9/30 Sebastien Vauban sva-n...@mygooglest.com: A partly manual solution would be to use tags for which sections to export in which backend, make a sparse tree with the backend you're interested to export, and export what's visible? I am by far not

Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-10-04 Thread Xebar Saram
Thx Bastien! i look at it but it seemed highly complex (im an academic and dont know much (well nothing tbh :) ) about programming. is there a simple way of defining these like the GUI for org-emphasis-alist (i used customize-variables ) as you said i just want to highlight (BG/FG) specific

Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-10-04 Thread Bastien
Xebar Saram zelt...@gmail.com writes: as you said i just want to highlight (BG/FG) specific areas/lines. any help would be greatly appreciated! E.g. you can do this to highlight ♩ with '(:weight ultra-bold :background #FFBF1E) : (font-lock-add-keywords 'org-mode '((♩ (0 '(:weight ultra-bold

Re: [O] How to install recent documentation of org 8.2?

2013-10-04 Thread Suvayu Ali
On Fri, Oct 04, 2013 at 10:09:49AM +0530, Noorul Islam K M wrote: Martin Beck martin.b...@macbay.de writes: I tried to get a recent documentation in my org-mode: I'm using Aquamacs 2.5 on MacOS X, which seems to have org-mode 6.33 onboard. I tried to load the recent documentation

[O] Unable to finalize capture

2013-10-04 Thread Dror Atariah
It seems like after the last update I've made to org-mode the capturing of notes does not work properly. Currently I have version 8.0.7 (20130930) from the ELPA. Hitting C-c c (i.e. org-capture) brings the list of capture templates and then I can choose one of them to open a buffer where I can

Re: [O] How to build org-mode on Windows

2013-10-04 Thread Achim Gratz
Am 04.10.2013 09:11, schrieb Pascal Quesseveur: I want to install latest version but I understand it relies on make to compile. I am currently using Windows and I don't have cygwin and don't plan to install it. Is there any alternatives?

Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-10-04 Thread Xebar Saram
Thank you again that works well but i think it dosent cover what i had in org. in org i use the ♩ symbol to highlight all the text between the 2 ♩, IE ♩ALL THIS TEXT IS HIGHLIGHTED♩, currently with the above code the ♩ is highlighted but not the text between, is it possible to do achive that

Re: [O] ob-clojure.el alternative using nrepl

2013-10-04 Thread Oleh
Thanks, Eric. Your changes work. Still, I think that it's needed to require ob-tangle. It defines the variable `org-babel-tangle-lang-exts' that ob-clojure wants to modify right at loading. So it's impossible to load ob-clojure unless ob-tangle was already loaded. Just to clarify, this code

Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-10-04 Thread Bastien
Xebar Saram zelt...@gmail.com writes: ♩ALL THIS TEXT IS HIGHLIGHTED♩, currently with the above code the ♩ is highlighted but not the text between, is it possible to do achive that with font-lock? Not with font-lock-add-keywords, which I think is just for one-liner highlights (as the name

Re: [O] How to build org-mode on Windows

2013-10-04 Thread Fabrice Popineau
I don't want to use Cygwin either, but a great alternative is MingW or MingW64 (for 64bits emacs). Then you can use 'make compile' in your git repos. Fabrice 2013/10/4 Achim Gratz strom...@nexgo.de Am 04.10.2013 09:11, schrieb Pascal Quesseveur: I want to install latest version but I

Re: [O] [RFC] Simple cache mechanism for `org-element-at-point'

2013-10-04 Thread Nicolas Goaziou
Hello, Eric Abrahamsen e...@ericabrahamsen.net writes: Cool! Anything in particular that we should be looking out for (structure editing, export, etc)? It has so far not set my computer on fire. Unfortunately, there is no simple recipe to try it out. Just use Org and, if you notice something

Re: [O] How to build org-mode on Windows

2013-10-04 Thread Pascal Quesseveur
AG == Achim Gratz strom...@nexgo.de writes: AG http://orgmode.org/worg/org-faq.html#installing-org-without-make-tools AG But your best bet is probably ELPA. Thank you. I missed this FAQ. -- Pascal Quesseveur pques...@gmail.com

Re: [O] [RFC] Simple cache mechanism for `org-element-at-point'

2013-10-04 Thread Carsten Dominik
Hi Nicolas, this sounds like a great idea. I have not yet had the time to test it - but I would like to bring forward two basic worries. Maybe you have comments on them? 1. Updating on buffer modification hooks sounds like a very demanding process. You basically add a third expensive

Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-10-04 Thread Eric Abrahamsen
Xebar Saram zelt...@gmail.com writes: Thank you again that works well but i think it dosent cover what i had in org. in org i use the ♩ symbol to highlight all the text between the 2 ♩, IE ♩ALL THIS TEXT IS HIGHLIGHTED♩, currently with the above code the ♩ is highlighted but not the text

[O] How to specify complex HTML pre/postamble in the Org file?

2013-10-04 Thread Yujie Wen
Hi, I am just wondering how to specify some complex HTML pre/postamble contents in the Org file. As the document saying, HTML pre/postamble contents can be given by either setting string values to emacs variables org-html-preamble/postamble, or setting #+OPTIONS: html-preamble/postamble:.

[O] Unable to finalize a capture

2013-10-04 Thread Dror Atariah
It seems like after the last update I've made to org-mode the capturing of notes does not work properly. Currently I have version 8.0.7 (20130930) from the ELPA. Hitting `C-c c` (i.e. org-capture) brings the list of capture templates and then I can choose one of them to open a buffer where I

Re: [O] Limit subtree to a specific export backend

2013-10-04 Thread Sebastian Wiesner
2013/9/30 Rasmus ras...@gmx.us: Hi Sebastian, Sebastian Wiesner lunary...@gmail.com writes: can I limit a subtree to be exported with specific backends only? I.e. only to HTML, but not Texinfo or LaTeX? Background: I am trying to simplify the documentation of one of my projects, and

Re: [O] list items not treated as such.

2013-10-04 Thread Paul Rudin
Paul Rudin p...@rudin.co.uk writes: (about lists) Here is a test for this problem. Notice that if you change the a) to 1. - for example - the test passes. So this is something specific to alphabetically labelled list items. (ert-deftest org-list-item-test () (with-temp-buffer (org-mode)

Re: [O] Suggestion: Weektree

2013-10-04 Thread Mike McLean
On Oct 1, 2013, at 11:43 AM, John Hendy jw.he...@gmail.com wrote: On Tue, Oct 1, 2013 at 5:11 AM, Anders Johansson mejlaande...@gmail.com wrote: Greetings, It's very nice to keep a journal in a datetree (using the capture mechanism) but for my uses it would actually be even more useful to

[O] How does Org make TAB work on the console?

2013-10-04 Thread Thorsten Jolitz
Hi List, Org-mode does ,-- | (org-defkey org-mode-map [(tab)] 'org-cycle) `-- to bind TAB to org-cycle, and Outshine does this ,- |

[O] org-mode based groupware wiki

2013-10-04 Thread Torsten Wagner
Hi, recently I discovered gollumn [1] and was amazed to see that there is a software which allows non-orgers to work with / read my org-files and which even use git as the backend to get all save and nice together, even if working concurrently on the same files. I was wondering, because I never

Re: [O] Limit subtree to a specific export backend

2013-10-04 Thread Rasmus
Sebastian Wiesner lunary...@gmail.com writes: I presume, I can set org-export-filter-options-functions as a directory-local variable, so that this kind of export restrictions only applies to Org mode documents in the specific project. Probably. There was some discussions on it lately. Check

Re: [O] orgstruct++-mode, fill-paragraph, and mail-mode

2013-10-04 Thread Rene
Rene jlr_0 at yahoo.com writes: I like the intuitive way the Org mode structure editing and list formatting works. Thus I turn it on in mail-mode with (add-hook 'mail-mode-hook 'turn-on-orgstruct) This works alright. But when I use orgstruct++-mode (add-hook

Re: [O] Unable to finalize capture

2013-10-04 Thread Nick Dokos
Dror Atariah dror...@gmail.com writes: It seems like after the last update I've made to org-mode the capturing of notes does not work properly. Currently I have version 8.0.7 (20130930) from the ELPA. Hitting C-c c (i.e. org-capture) brings the list of capture templates and then I can choose

Re: [O] org-mode based groupware wiki

2013-10-04 Thread Eric Schulte
Check out org-ehtml. See the original announcement [1] and the repo on github [2]. It might need some attention as the Org-mode export API is constantly in flux, but it does work to allow editing of Org-mode pages through a web page. Cheers, Footnotes: [1]

Re: [O] Unable to finalize capture

2013-10-04 Thread Dror Atariah
On Oct 4, 2013, at 14:56 PM, Nick Dokos wrote: Dror Atariah dror...@gmail.com writes: It seems like after the last update I've made to org-mode the capturing of notes does not work properly. Currently I have version 8.0.7 (20130930) from the ELPA. Hitting C-c c (i.e. org-capture) brings

Re: [O] list items not treated as such.

2013-10-04 Thread Nicolas Goaziou
Hello, Paul Rudin paul-sqpymovxoov10xsdtd+...@public.gmane.org writes: Paul Rudin paul-sqpymovxoov10xsdtd+...@public.gmane.org writes: (about lists) Here is a test for this problem. Notice that if you change the a) to 1. - for example - the test passes. So this is something specific to

[O] proposal for a tool to translate orgmode outlines into programs

2013-10-04 Thread Isaac
proposal for a tool to translate orgmode outlines into programs Idea: a program to translate orgmode note into script/programs which can be used as a template/starting point for a real program after debugging, refactoring. Background and reasons: As I am accumulating more orgmode

Re: [O] ob-clojure.el alternative using nrepl

2013-10-04 Thread Eric Schulte
Oleh ohwoeo...@gmail.com writes: Thanks, Eric. Your changes work. Great, thanks for the patch. Still, I think that it's needed to require ob-tangle. It defines the variable `org-babel-tangle-lang-exts' that ob-clojure wants to modify right at loading. So it's impossible to load

Re: [O] proposal for a tool to translate orgmode outlines into programs

2013-10-04 Thread Thomas S. Dye
Aloha Isaac, This sounds to me a lot like literate programming, which can be accomplished in Org with very many languages, including ruby and python (but not lua, yet). See http://orgmode.org/worg/org-contrib/babel/languages.html. An advantage of literate programming is that it generates

Re: [O] [RFC] Simple cache mechanism for `org-element-at-point'

2013-10-04 Thread Nicolas Goaziou
Hello, Carsten Dominik carsten.domi...@gmail.com writes: 1. Updating on buffer modification hooks sounds like a very demanding process. There is obviously a cost, but it shouldn't be very high. I simplified the process in the announcement. Actually, the cache is not updated right after

[O] Small bug: No italic face when /italics/ inside a link

2013-10-04 Thread William Denton
When italics are applied to the anchor text of a link, the text is not italicized. (I have org-fontify-emphasized-text set to t, so normally /italics/ are rendered in an italic face.) # --- sample Italics outside link: /[[http://orgmode.org/][Org]]/ Italics inside link:

Re: [O] list items not treated as such.

2013-10-04 Thread Paul Rudin
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Paul Rudin p...@rudin.co.uk writes: Paul Rudin p...@rudin.co.uk writes: (about lists) Here is a test for this problem. Notice that if you change the a) to 1. - for example - the test passes. So this is something specific to

Re: [O] Transpose or open functions for table cells

2013-10-04 Thread Suvayu Ali
Hi Michael, On Mon, Sep 30, 2013 at 08:30:57PM +0200, Michael Brand wrote: Hi Suvayu On Sun, Sep 29, 2013 at 11:57 PM, Suvayu Ali fatkasuvayu+li...@gmail.com wrote: Yes, the above allows easy rearrangement of table cells. I'm looking for something that allows me to insert cells in a row

Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-10-04 Thread Xebar Saram
Thank you so much Eric that works well apart from as you said it sometime spills over to other uneeded lines. any idea of how to limit the number of newlines that the regexp can match? really appreciate the help z. On Fri, Oct 4, 2013 at 12:15 PM, Eric Abrahamsen e...@ericabrahamsen.netwrote:

Re: [O] Bug: dates in heading break beamer export

2013-10-04 Thread Nicolas Goaziou
Hello, Daniele Pizzolli d...@toel.it writes: yes, the problem is fixed both for dates and footnotes in sections, and should be fixed for any of: bold footnote-reference italic strike-through timestamp underline if I understand it correctly. Nice! I hope you plan to merge it. Done.

Re: [O] org-debbugs.el

2013-10-04 Thread Michael Albinus
Michael Albinus michael.albi...@gmx.de writes: Hi Suvayu, I tried to test by looking for a specific bug. This is what I tried: - search phrase: emacsclient - submitter: fatkasuvayu (that is leading part of my email address) - status: done or nothing But then I get an empty *Org Bugs*

Re: [O] org-debbugs.el

2013-10-04 Thread Suvayu Ali
Hi Michael, On Fri, Oct 04, 2013 at 09:19:27PM +0200, Michael Albinus wrote: Michael Albinus michael.albi...@gmx.de writes: Hi Suvayu, I tried to test by looking for a specific bug. This is what I tried: - search phrase: emacsclient - submitter: fatkasuvayu (that is leading part of

Re: [O] Unable to finalize capture

2013-10-04 Thread Nick Dokos
Dror Atariah dror...@gmail.com writes: M-x locate-library RET org RET Returns: Library is file ~/.emacs.d/elpa/org-plus-contrib-20130930/org.elc N.B. Never used elpa, so take with appropriately sized grain of salt. Not sure whether this is a problem, but why is org.elc in the main directory

Re: [O] proposal for a tool to translate orgmode outlines into programs

2013-10-04 Thread Isaac
Thomas S. Dye tsd at tsdye.com writes: Aloha Isaac, This sounds to me a lot like literate programming, which can be accomplished in Org with very many languages, including ruby and python (but not lua, yet). See http://orgmode.org/worg/org-contrib/babel/languages.html. An advantage of

Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-10-04 Thread Eric Abrahamsen
Xebar Saram zelt...@gmail.com writes: Thank you so much Eric that works well apart from as you said it sometime spills over to other uneeded lines. any idea of how to limit the number of newlines that the regexp can match? really appreciate the help The easiest thing would be to add a