[Orgmode] Re: keys and command name info

2010-07-28 Thread Tassilo Horn
Andreas Röhler writes: Hi Andreas, > what about delivering mnemonic command names alongside with its keys > in org-info? That would be good practice, and I think it's more or less standard for emacs packages. For example, that is from Gnus: ,[ (info "(gnus)Summary Post Commands") ] | `S p

[Orgmode] Re: Email from org?

2010-07-28 Thread Ethan Ligon
Eric Schulte gmail.com> writes: > > See http://orgmode.org/worg/org-contrib/org-mime.php for information on > exporting Org-mode documents to email, and on using Org-mode syntax to > compose email. > Thanks for the suggestions regarding org-mime. I can see that it would be very useful for comp

[Orgmode] keys and command name info

2010-07-28 Thread Andreas Röhler
Hi, what about delivering mnemonic command names alongside with its keys in org-info? For example 8.1. Agenda files [ ... ] `C-c [' Add current file to the list of agenda files. The file is added to the front of the list. If it was already in the list, it is moved to the fron

[Orgmode] Re: [PATCH] bug in org-mode-export-as-latex

2010-07-28 Thread Nicolas Goaziou
Hello, > Neil Hepburn writes: > The latest version (7.01g) seems to have a bug when exporting to PDF > (and LaTeX) with tables with labels. The export does not label the > table in the LaTeX file although it is labeled in the .org file. Curiously, it looks like \label code was removed at som

[Orgmode] Re: insert .org file into other .org file by link

2010-07-28 Thread Austin Frank
On Wed, Jul 28 2010, Rainer M Krug wrote: > I have a .org file (lets call it basic.org), which creates me a report > from a simulation (of a variable x, saved from R) - it works fine for > export to html and pdf. > > Now I want to create a report (all.org), which should include the report > from b

[Orgmode] Re: include value of single table cell in text?

2010-07-28 Thread Austin Frank
On Tue, Jul 27 2010, Eric Schulte wrote: > The following should work. It uses an inline code block > > #+TBLNAME: test-table > | key | value | > |-+---| > | a | 1 | > | b | 2 | > > Is there any way to refer to cell @2$2 within the text of an org-mode > document, and have that

[Orgmode] Re: row and col spaning in table?

2010-07-28 Thread Srinivas
Giovanni Ridolfi yahoo.it> writes: > > David Hajage gmail.com> writes: > > > and I was wondering if row and col spaning was possible? > Currently not. > But, if this is your case, you should use the table.el package. > For some reason, I haven't been able to get table.el to work properly du

Re: [Orgmode] Org file rendering/manipulation too slow

2010-07-28 Thread Nick Dokos
Marcelo de Moraes Serpa wrote: > I've got a plenty of very big org files (~50KB). When it reaches > ~30KB, org struggles to handle it -- it becomes very slow to navigate > through the file, the response time is far from smooth. > > release_7.01g-20-gdd484 and GNU Emacs 23.2.1 (x86_64-apple-darw

Re: [Orgmode] Wiki-like creating links on the fly for org

2010-07-28 Thread John Hendy
I migrated to orgmode from TiddlyWiki and understand the ease of simply writing [[PageName]] during edits. I don't think, however, that this is all that far from what org already provides with links: http://www.gnu.org/software/emacs/manual/html_node/org/Handling-links.html

Re: [Orgmode] Migrating from zim to org-mode ?

2010-07-28 Thread Marcelo de Moraes Serpa
Beware that, out-of-the-box, org doesn't provide any wiki functionality. Sure you can link documents, but it doesn't automatically infer links from already existing documents / camelcased words. I don't think it would be hard for a seasoned elisp developer to come up with an extension, but little i

Re: [Orgmode] Wiki-like creating links on the fly for org

2010-07-28 Thread Marcelo de Moraes Serpa
Would it be hard to create an extension (not sure where, elisp skills still very limited) that highlights camel-cased words and, when clicking on it, would create or open a file with the name of the word + .org? For "dynamic" reference data (data you want to keep, and that you want to keep editing

[Orgmode] Org file rendering/manipulation too slow

2010-07-28 Thread Marcelo de Moraes Serpa
Hi list, I've got a plenty of very big org files (~50KB). When it reaches ~30KB, org struggles to handle it -- it becomes very slow to navigate through the file, the response time is far from smooth. release_7.01g-20-gdd484 and GNU Emacs 23.2.1 (x86_64-apple-darwin, NS apple-appkit-1038.29) of 20

[Orgmode] Mobile-org crash --- same error?

2010-07-28 Thread Robert Goldman
I just got an error in doing this after an update: (void-function ps-header-footer-string) I don't have any way of knowing if this is the same bug as yours. This happens because org-write-agenda calls ps-print-buffer-with-faces on "/Volumes/rpgoldman/org/agendas.org" As far as I can tell, this

[Orgmode] Re: firefox problem with org-protocol

2010-07-28 Thread Robert Goldman
For a very, very long time this has not worked on Mac OSX (this may relate to the OS and Firefox disagreeing over who handles protocols). Does anyone know if this has finally been fixed? ___ Emacs-orgmode mailing list Please use `Reply All' to send rep

Re: [Orgmode] R Babel Example

2010-07-28 Thread Russell Adams
Eric, I'd suggest moving it into Worg completely, that's why I made it openly available. I was hoping someone would snatch it up as a sample. ;] Let me know when its moved and I'll take down my temporary copy. Thanks. On Wed, Jul 28, 2010 at 07:57:44AM -0600, Eric Schulte wrote: > Hi Russell,

Re: Prompts again WAS Re: [Orgmode] avoiding source block prompts

2010-07-28 Thread Eric Schulte
Thanks Chuck, I've just swapped in your new and improved regexp. I share your concern both that there could be cases where prompts aren't matched, or more seriously where the actual output looks like a prompt (e.g. user returns a prompt-like string). Before taking this explicit prompt removal ap

Re: [Orgmode] Re: Composing letters using org-mode and scrlttr2

2010-07-28 Thread Eric Schulte
Hi Jambunathan, This looks very useful, and the output of scrlttr2 looks great. I think two things can be done to make this more accessible to the wider Org-mode community. First it seems (as you mentioned) like the bulk of your changes can be implemented without any change to the Org-mode core,

Re: [Orgmode] R Babel Example

2010-07-28 Thread Eric Schulte
Hi Russell, This is really great! Would you mind if we made this slightly more "official" and linked to it from the Babel documentation on Worg? Cheers -- Eric Russell Adams writes: > I just did a sample of R with Babel in dual formats, png for viewing > inline and PDF for latex importing of

[Orgmode] Re: [BABEL] evaluation of R code in export

2010-07-28 Thread Eric Schulte
Rainer M Krug writes: > Hi Eric, > > On 23/07/2010 19:45, Eric Schulte wrote: >> Hi Rainer, >> >> I general it is useful to have the results of Babel-evaluated code >> appear in the session history as it can help for debugging. > > Ok - agreed. The results are quite useful - but I would prefer t

[Orgmode] Re: [BABEL] org-babel-post-tangle-hook problems

2010-07-28 Thread Eric Schulte
Hi Rainer, Thanks for catching this, I've just pushed up a fix. Best -- Eric Rainer M Krug writes: > On 27/07/10 15:32, Rainer M Krug wrote: >> Hi Eric >> >> I relized the following problems today: >> >> After setting the org-babel-post-tangle-hook (e.g. >> (add-hook 'org-babel-post-tangle-h

[Orgmode] bug in org-mode-export-as-latex

2010-07-28 Thread Neil Hepburn
The latest version (7.01g) seems to have a bug when exporting to PDF (and LaTeX) with tables with labels. The export does not label the table in the LaTeX file although it is labeled in the .org file. The following code in an org-mode file #+CAPTION: A Simple Table #+LABEL: tbl:ATbl |

Re: [Orgmode] Eliminate line breaks in html

2010-07-28 Thread John Hendy
@ Giovanni: the manual says \n:nil does not work. I played around with it anyway but was unsuccessful. Bummer as it seemed like it would have been perfect... @ TIm, I am aware of this option and it's what I was referencing in the original note with: > I could resort to explicit html every time I

Re: [Orgmode] Re: Installation - no way

2010-07-28 Thread Jason McBrayer
On Tue, Jul 27, 2010 at 4:58 PM, Andrea Crotti wrote: > Have a look also here > http://www.ourcomments.org/Emacs/EmacsW32Util.html > It looks a bit old and I'm not sure it contains org-mode but it should > be a bit easier for beginners. I'd also recommend this for Emacs beginners on Windows. Emac

Re: [Orgmode] Eliminate line breaks in html

2010-07-28 Thread Tim Burt
John Hendy writes: > I use org for exporting to html and then pasting into blogger I use this process also for Blogger > ... but every time I do I need to delete line breaks. ... but I do not need to delete line breaks. See http://naturallogofx.rketburt.org/2010/07/linebreaks-blogger-and-org-mod

[Orgmode] insert .org file into other .org file by link

2010-07-28 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi I have a .org file (lets call it basic.org), which creates me a report from a simulation (of a variable x, saved from R) - it works fine for export to html and pdf. Now I want to create a report (all.org), which should include the report from basi

Re: [Orgmode] row and col spaning in table?

2010-07-28 Thread Giovanni Ridolfi
David Hajage writes: > and I was wondering if row and col spaning was possible? Currently not. But, if this is your case, you should use the table.el package. > If not, is there any plan to add this feature in a future release? I don't think so. There's already the table.el package. Please se

[Orgmode] Re: [BABEL] org-babel-post-tangle-hook problems

2010-07-28 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 27/07/10 15:32, Rainer M Krug wrote: > Hi Eric > > I relized the following problems today: > > After setting the org-babel-post-tangle-hook (e.g. > (add-hook 'org-babel-post-tangle-hook > (lambda () (message "I'm in %s" (buffer-file-na

Re: [Orgmode] Eliminate line breaks in html

2010-07-28 Thread Giovanni Ridolfi
John Hendy writes: > Hi, > I use org for exporting to html and then pasting into blogger... but > every time I do I need to delete line breaks. > Is there a way to get org to just publish the blob without breaking > lines every time? #+OPTIONS: \n:nil ? cheers, Giovanni __