Re: [O] orgmode and auctex

2012-02-23 Thread Nick Dokos
Christopher Witte wrote: > Hi all, > > (setq TeX-auto-save t) > (setq TeX-parse-self t) > (setq-default TeX-master nil) > (make-variable-buffer-local 'TeX-master) ;; I think this is need because the > variable is not buffer > local until Auctex is active > > (defun org-mode-reftex-setup () >  

Re: [O] Beamer confusion: environments are ignored

2012-02-23 Thread James Harkins
(Sorry for breaking the thread -- I'm using the digest. Come to think of it, I was wondering -- how do other digest readers participate in discussions without messing up the thread IDs? Use a news reader, or...? Nabble?) Sebastien Vauban wrote: > For horizontal centering, a workaround (or simply

[O] enhancement request: {est+} summary type for HH:MM properties

2012-02-23 Thread Myles English
Hello, Please would someone have a look at this enhancement request? Given a columns definition like this: #+COLUMNS: %50ITEM %5Effort(Hours est.){est+} if the property :Effort: contains time values in HH:MM format then the {est+} summary type doesn't work because it requires a real number ('1

[O] Bug: Org-mode don't recognizes footnote references inside a #BEGIN_VERSE--#END_VERSE block [7.8.03]

2012-02-23 Thread Bruno Félix Rezende Ribeiro
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

Re: [O] Org publish restrict to certain levels

2012-02-23 Thread Nick Dokos
Xin Shi wrote: > I have a relatively long and detailed document maintained in org but > only won't to publish into LaTeX to the first 3 levels, because the > rest of the levels are too many details. If I use COMMENT into every > of them, looks very cumbersome. I'm wondering if there is any in-fil

Re: [O] missing appointments

2012-02-23 Thread Nick Dokos
Nick Dokos wrote: > > I'm not sure I understand how it works, but I've added it (plus some > debugging) and we'll see how it goes: is the "24:01" a relative time or > an absolute time? I can't make heads or tails of the run-at-time doc. I went through the code: it's an absolute time and it repr

Re: [O] [babel] Editing 'quote' source blocks in artist mode

2012-02-23 Thread Eric Schulte
>> >> Not sure what the "best" solution is: sometimes they are ascii art and >> having picture mode on is helpful, sometimes they are text and some kind >> of text mode would be more appropriate. But they could really be anything >> so *any* choice is bound to disappoint at some point/time and I'm

Re: [O] [babel] problem with sh blocks

2012-02-23 Thread Andreas Leha
Bernt Hansen writes: > Andreas Leha writes: > >> Org-mode version 7.8.03, pulled last week >> (how do I get the release info as well?) > > If you are running from a git repository then M-x org-version should > show the results of 'git describe' automatically. > > C-u M-x org-version RET > Org-

Re: [O] missing appointments

2012-02-23 Thread Nick Dokos
Bernt Hansen wrote: > Memnon Anon writes: > > > Nick Dokos writes: > > > >> ;; wrong > >> (setq org-appt-timer (run-at-time "00:01" nil (function > >> org-agenda-to-appt))) > > [...] > >> o finally, I would like to add a call at midnight every day to > >> recalculate appointments for the ne

Re: [O] Clocking time in frame title bar

2012-02-23 Thread Borbus
Well I just went ahead and wrote the hack anyway and it seems to work for me, here is what I did: ;; show clock and timer stuff in the frame title (defvar plain-frame-title-format frame-title-format) (defun clock-in-frame-title () (if (org-clocking-p) (setq frame-title-format (list (concat

Re: [O] Bug: org-indent-mode cursor movement [7.8.03]

2012-02-23 Thread Achim Gratz
Andrew Stine writes: > Byte-compiling org-mode a second time after installation seems to > permanently solve the problem for me. I suspect that this is not a bug > with org-mode, but with elpa. Thanks for your assistance. You might want to file a bug report against Emacs, since gnu-elpa is now pa

[O] Bug: Consistency graph redisplay with links in filtered headings [7.8.03]

2012-02-23 Thread Thomas Morgan
Habit lines containing links get mangled on redisplay when they are filtered out of the agenda view. Here's how to reproduce it: 1. Run `emacs -Q -l setup.el'. 2. Type `M-x org-agenda', then `a' for weekly agenda. 3. Type `C-u \ TAB random' to filter out items tagged `random'. 4. Move point to

[O] Clocking time in frame title bar

2012-02-23 Thread Borbus
Hi, I'm really enjoying using org-mode's clocking features and it's nice that it shows the current task and total clocking time in the modeline but for me there is a problem with this: I often have multiple windows open and my frame is split horizontally. This means the modeline is too short to c

Re: [O] Bug: org-indent-mode cursor movement [7.8.03]

2012-02-23 Thread Andrew Stine
Hello all, Byte-compiling org-mode a second time after installation seems to permanently solve the problem for me. I suspect that this is not a bug with org-mode, but with elpa. Thanks for your assistance. - Andrew

Re: [O] missing appointments

2012-02-23 Thread Bernt Hansen
Memnon Anon writes: > Nick Dokos writes: > >> ;; wrong >> (setq org-appt-timer (run-at-time "00:01" nil (function org-agenda-to-appt))) > [...] >> o finally, I would like to add a call at midnight every day to >> recalculate appointments for the next day - unfortunately, the call >> above is

Re: [O] [babel] Editing 'quote' source blocks in artist mode

2012-02-23 Thread Thorsten
Nick Dokos writes: > Thorsten wrote: > >> Nick Dokos writes: >> >> > Gustav Wikström wrote: >> > >> >> Hi! >> >> >> >> Just tried this and I can confirm both your bugs. >> >> >> >> calling org-edit-special on the following line gives artist-mode (or >> >> whatever it is called..): >> >> >

[O] org-edit-special is available to other buffers

2012-02-23 Thread Le Wang
Hi, I asked about this a while ago on this list, but no one seemed interested. So I've gone ahead and implemented this myself. https://github.com/lewang/generic-edit-special This allows you to define beginning/ending regexps with corresponding language, and edit the region in between just like o

Re: [O] [babel] Editing 'quote' source blocks in artist mode

2012-02-23 Thread Nick Dokos
Thorsten wrote: > Nick Dokos writes: > > > Gustav Wikström wrote: > > > >> Hi! > >> > >> Just tried this and I can confirm both your bugs. > >> > >> calling org-edit-special on the following line gives artist-mode (or > >> whatever it is called..): > >> > >> : some text > >> > > > > That'

Re: [O] [babel] Editing 'quote' source blocks in artist mode

2012-02-23 Thread Thorsten
Nick Dokos writes: > Gustav Wikström wrote: > >> Hi! >> >> Just tried this and I can confirm both your bugs. >> >> calling org-edit-special on the following line gives artist-mode (or >> whatever it is called..): >> >> : some text >> > > That's a feature, not a bug: A quote might be a fix

Re: [O] [babel] Editing 'quote' source blocks in artist mode

2012-02-23 Thread Nick Dokos
Gustav Wikström wrote: > Hi! > > Just tried this and I can confirm both your bugs. > > calling org-edit-special on the following line gives artist-mode (or whatever > it is called..): > > : some text > That's a feature, not a bug: , | org-edit-fixed-width-region is an interactive Lisp

Re: [O] [babel] Editing 'quote' source blocks in artist mode

2012-02-23 Thread Gustav Wikström
Hi! Just tried this and I can confirm both your bugs. calling org-edit-special on the following line gives artist-mode (or whatever it is called..): : some text calling org-edit-special inside the block gives ffap: #+begin_quote some text #+end_quote /Gustav On Thu, Feb 23, 2012 at 10:39 A

Re: [O] Bug: org-indent-mode cursor movement [7.8.03]

2012-02-23 Thread Andrew Stine
On Thu, Feb 23, 2012 at 9:44 AM, Nick Dokos wrote: > Andrew Stine wrote: > >> I've tried "-q" and it works, but only because emacs reverts to default >> version of org-mode. The >> version I am having trouble with is currently installed through elpa. >> > > Then create a minimal .emacs file that

Re: [O] Bug: org-indent-mode cursor movement [7.8.03]

2012-02-23 Thread Nick Dokos
Andrew Stine wrote: > I've tried "-q" and it works, but only because emacs reverts to default > version of org-mode. The > version I am having trouble with is currently installed through elpa. > Then create a minimal .emacs file that will load the right version of org (but exclude all your cu

Re: [O] missing appointments

2012-02-23 Thread Memnon Anon
Nick Dokos writes: > ;; wrong > (setq org-appt-timer (run-at-time "00:01" nil (function org-agenda-to-appt))) [...] > o finally, I would like to add a call at midnight every day to > recalculate appointments for the next day - unfortunately, the call > above is not correct, so for now I do it

[O] limitations of hard-coded field separator removed

2012-02-23 Thread Andreas Röhler
Hi, attached a org-table-import.patch removes limitations of hard-coded separator char(s). `org-guess-separator' accepts and detects all chars as field separators. It works based on the assumption, that char looked for appears in equal number at each row. Also a default value `org-table-impor

[O] [babel] [PATCH] Add support for MonetDB for SQL blocks

2012-02-23 Thread Viktor Rosenfeld
Hi, the attached patch adds support for evaluating SQL blocks on MonetDB. The MonetDB client normally requires the password to be inputted on the console. To get around this, you have to use a dotfile ~/.monetdb with authentification data. Note that this file is ignored if you specify a user on th

Re: [O] Bug: org-indent-mode cursor movement [7.8.03]

2012-02-23 Thread Andrew Stine
I've tried "-q" and it works, but only because emacs reverts to default version of org-mode. The version I am having trouble with is currently installed through elpa. As to example file, do you mean example org file? If so, I've had trouble with every org file I've tried, even blank ones. Regards

[O] Org publish restrict to certain levels

2012-02-23 Thread Xin Shi
Hello Experts, I have a relatively long and detailed document maintained in org but only won't to publish into LaTeX to the first 3 levels, because the rest of the levels are too many details. If I use COMMENT into every of them, looks very cumbersome. I'm wondering if there is any in-file config

[O] agenda appt warn time (baby step part 2)

2012-02-23 Thread Ivan Kanis
Hi, The previous patch I sent was completely buggy. This one works but doesn't fulfill my RFC. I think the warn time should be somewhere within the time stamp... diff --git a/emacs/org/org-agenda.el b/emacs/org/org-agenda.el index 780794e..2a8e926 100644 --- a/emacs/org/org-agenda.el +++ b/emacs/

Re: [O] [babel] Editing 'quote' source blocks in artist mode

2012-02-23 Thread Thorsten
Nick Dokos writes: > Thorsten wrote: > >> >> Hi list, >> when I want to edit text inside a 'quote' source block, I find myself in >> picture/artist mode with wild key rebindings, e.g.: >> >> ,--- >> | RET (translated from

Re: [O] notifications for todo items

2012-02-23 Thread Nick Dokos
Peter Münster wrote: > On Thu, Feb 23 2012, Nick Dokos wrote: > > > what does this do that appt.el (and its org interface) does not? > > Sorry, I've totally forgotten to write about my motivation, to create > such an org-notify module. > > Here a summary: > - different warning periods for diff

Re: [O] Bug: org-indent-mode cursor movement [7.8.03]

2012-02-23 Thread Nick Dokos
Nicolas Goaziou wrote: > Hello, > > Andrew Stine writes: > > > When org-indent-mode is active, the cursor repeatedly jumps to the > > bottom of the buffer. This makes using the buffer impossible while > > org-indent-mode is active. > > I cannot reproduce it. Could you send me an example file

Re: [O] missing appointments

2012-02-23 Thread Nick Dokos
Rodrigo Amestica wrote: > Hi, > > I use appt to connect desktop notifications to appointments in my > agenda. However, the connection between the appointments and the > notification system does not happen until I visit the agenda with, for > example, "C-c a a", which I sometimes forget to invoke

Re: [O] Bug: org-indent-mode cursor movement [7.8.03]

2012-02-23 Thread Nicolas Goaziou
Hello, Andrew Stine writes: > When org-indent-mode is active, the cursor repeatedly jumps to the > bottom of the buffer. This makes using the buffer impossible while > org-indent-mode is active. I cannot reproduce it. Could you send me an example file where the problem happens? Regards, --

Re: [O] Beamer confusion: environments are ignored

2012-02-23 Thread Sebastien Vauban
Hi James, James Harkins wrote: > Still having Beamer problems. C-c C-e p is making the PDF at the end, > but it's ignoring structural tags except for lists. > > I've pasted a simple example under my name. In the resulting .tex > file, the code for both frames is identical, except for "sec" labels.

Re: [O] notifications for todo items

2012-02-23 Thread Peter Münster
On Thu, Feb 23 2012, Nick Dokos wrote: > what does this do that appt.el (and its org interface) does not? Sorry, I've totally forgotten to write about my motivation, to create such an org-notify module. Here a summary: - different warning periods for different todo-types - fine grained warning p

[O] babel bugs??

2012-02-23 Thread Thomas Alexander Gerds
Dear Babel developers I may have found two bugs (org-mode: 7.8.03 release_7.8.03.330.gc804.dirty), emacs: 23.2.1): 1. when I have case-fold-search set to nil, I get problems with the begin/end src notation: , lower case works as expected | | #+begin_src emacs-lisp :results list | (mapcar