[O] agenda view custom command, restrict buffer

2014-09-14 Thread Brady Trainor
Today I realized how simple a command I liked in C-c a < a d. This would give an agenda-view of the current buffer and current day. So I thought, let's practice translating such key sequences to custom-commands. And I hit a speed bump. It seems not everything available in the agenda command

Re: [O] emailing agenda view

2014-09-14 Thread John Kitchin
Ken writes: Here is a function to email the buffer: (defun email-buffer () "Send region as the body of an email." (interactive) (let ((content (buffer-string))) (compose-mail) (message-goto-body) (insert content) (message-goto-to))) Just run that from your agenda, and the

[O] trying to add hline refs ("@I$2") in lhs of formulae

2014-09-14 Thread Andrea Rossetti
Hello Org users, this example: | | | | |---+-+---| | | | | |---+-+---| | | | | #+TBLFM: @I$2='(random 1000) works incorrectly for me (Org 8.2.7c from ELPA, Emacs 24.3, Win7): C-c C-c on the #+TBLFM line updates four cells (@2$1, @2$2, @3$1, @3$2) instead of on

[O] org-info-js site not working ?

2014-09-14 Thread Mehul Sanghvi
I've attached a screen shot of what I see when I go to: http://orgmode.org/worg/code/org-info-js/index.html Is it just on my end or is there something wrong with the site ? If I click on the "Show Org Source" the TOC shows up for less than a second and disappears. I can view it if I use w3m o

Re: [O] [BUG] org-latex-export fails in spanish language

2014-09-14 Thread David Arroyo Menéndez
Nicolas Goaziou writes: > Hello, > > davi...@es.gnu.org (David Arroyo Menéndez) writes: > >> I'm exporting an org file to latex using the git repository. >> >> In the org file I've added #+LANGUAGE: es in the header. >> >> The language options doesn't appear in tex file. IMHO is necessary add >>

[O] emailing agenda view

2014-09-14 Thread Ken
Is there anyway to email the agenda view to a list f recipients? Thank you, Ken -- You will be divorced within a year.

[O] [SOLVED] (was: how to change floating point rep in the spreadsheet)

2014-09-14 Thread Uwe Brauer
>> "Uwe" == Uwe Brauer writes: > When I have a table with the following calculation > (7/6)*(B&+C&+D&+E&);%0f Sorry I forgot the "." (7/6)*(B&+C&+D&+E&);%.1f That works as expected. Sorry for the noise Uwe Brauer

[O] how to change floating point rep in the spreadsheet

2014-09-14 Thread Uwe Brauer
When I have a table with the following calculation (7/6)*(B&+C&+D&+E&) Which gives for example 7.000 But how can I change that format to 7? I thought (7/6)*(B&+C&+D&+E&);%0f But it did not work thanks Uwe Brauer

Re: [O] [BUG] org-latex-export fails in spanish language

2014-09-14 Thread Nicolas Goaziou
Hello, davi...@es.gnu.org (David Arroyo Menéndez) writes: > I'm exporting an org file to latex using the git repository. > > In the org file I've added #+LANGUAGE: es in the header. > > The language options doesn't appear in tex file. IMHO is necessary add > \usepackage[spanish]{babel}. I suppos

[O] [BUG] org-latex-export fails in spanish language

2014-09-14 Thread David Arroyo Menéndez
Hello, I'm exporting an org file to latex using the git repository. In the org file I've added #+LANGUAGE: es in the header. The language options doesn't appear in tex file. IMHO is necessary add \usepackage[spanish]{babel}. I suppose that is a problem with org-latex-guess-babel-language. Th