Re: [O] [PATCH] Re: Annoying positioning of point when writing footnotes

2015-08-13 Thread Gerald Wildgruber
Thanks Matt and Nicolas! I still have org-footnote-auto-adjust set to "t" and the positioning of point near the footnote marker works now with the sources I checked out this morning! One thing though: if I insert a new footnote in a region of text that already has footnotes before and after, th

Re: [O] [BUG] Re: Annoying positioning of point when writing footnotes

2015-08-13 Thread Gerald Wildgruber
On Do, Aug 13 2015, Matt Lundin wrote: > Gerald Wildgruber writes: > >> Matt, thanks! looking forward to any elucidation you can give on the >> problem at hand! > > Could you tell me what the value of org-footnote-auto-adjust is on your > machine? Indeed, I have set this variable to t! > It s

Re: [O] Add version header to org.el

2015-08-13 Thread Achim Gratz
Rasmus writes: > Is there any issues with adding a version header to org.el in maint and > master? Maybe 8.4 or 8.4-dev or 8.4-pre for master... Yes, we don't want to have to commit this nonsense when we have a proper VCS. Now, instead of simply tagging a release you're back to having to remembe

Re: [O] org-bbdb-birthday reminder

2015-08-13 Thread Nick Dokos
Here's a quick implementation of the method I described earlier in the thread: --8<---cut here---start->8--- ;;; Return list of anniversaries for today and the next n (default: 7) days. ;;; This is meant to be used in an org file instead of org-bbdb-anniversarie

Re: [O] Add version header to org.el

2015-08-13 Thread Rasmus
Hi, Nicolas Goaziou writes: > Rasmus writes: > >> Is there any issues with adding a version header to org.el in maint and >> master? > > I don't think so. It may require to update README_maintainer > accordingly. Done. >> Maybe 8.4 or 8.4-dev or 8.4-pre for master... > > IMO, "8.4" is fine.

Re: [O] [PATCH] Re: helm-mode-org-set-tags adding additional tags

2015-08-13 Thread Nicolas Goaziou
Hello, Matt Lundin writes: > The following patch should fix the problem. Applied. Thank you. Regards, -- Nicolas Goaziou

Re: [O] Pass options to \columns{} environment in beamer export

2015-08-13 Thread John Hendy
Sorry for the late reply -- took me a bit to get back to working on this so I could try it. That definitely works! I would not have guessed that from Worg, that's for sure. Thanks much for chiming in. John On Sat, Aug 8, 2015 at 4:54 PM, Fabrice Popineau < fabrice.popin...@supelec.fr> wrote:

Re: [O] re-search-forward hang in org-link-search

2015-08-13 Thread Nicolas Goaziou
Hello, Pip Cet writes: > Can you try this patch? That appears to fix the issue here, at least > for this one file, at the cost of yet another shy group added to the > regular expression. Thanks for the patch. Would you mind providing a proper commit message and send it again using "git format-

Re: [O] Add version header to org.el

2015-08-13 Thread Nicolas Goaziou
Hello, Rasmus writes: > Is there any issues with adding a version header to org.el in maint and > master? I don't think so. It may require to update README_maintainer accordingly. > Maybe 8.4 or 8.4-dev or 8.4-pre for master... IMO, "8.4" is fine. Regards, -- Nicolas Goaziou

[O] Add version header to org.el

2015-08-13 Thread Rasmus
Hi, Is there any issues with adding a version header to org.el in maint and master? Maybe 8.4 or 8.4-dev or 8.4-pre for master... See: http://permalink.gmane.org/gmane.emacs.devel/188780 Rasmus -- Sådan en god dansk lagereddike kan man slet ikke bruge mere

Re: [O] [PATCH] Re: Annoying positioning of point when writing footnotes

2015-08-13 Thread Nicolas Goaziou
Hello, Matt Lundin writes: > This patch should fix the issue. Testing is welcome. Thanks for the patch. However, `org-footnote-auto-adjust-maybe' needs to be called before `org-edit-reference'. Otherwise, the footnote number in the remote buffer is incorrect. The marker information is not rel

Re: [O] Fix for clocking in when org-clock-into-drawer is not a string

2015-08-13 Thread Nicolas Goaziou
Hello, Tom Hinton writes: > From 498b0ae295453e1ce5ef42d54cb8dfb9f930809e Mon Sep 17 00:00:00 2001 > From: Tom Hinton > Date: Wed, 12 Aug 2015 12:46:47 +0100 > Subject: [PATCH] Fix clock in when org-clock-into-drawer is integer > > * org-clock.el (org-clock-jump-to-current-clock): > fixed a b

Re: [O] OrgTbl mode not working

2015-08-13 Thread Nicolas Goaziou
Benjamin Slade writes: > Here is one: > > >>> > > \begin{comment} > #+ORGTBL: SEND summarytable orgtbl-to-latex :splice t :skip 0 > > | | | | | | > |---+---+---+---+---| > | | | | | | > > \end{comment} > > >>> > > [running in AUC

Re: [O] re-search-forward hang in org-link-search

2015-08-13 Thread Matthew MacLean
Yep! This patch works on the original file I noticed the behaviour. On Thu, Aug 13, 2015 at 12:50 PM, Pip Cet wrote: > (Sorry if this arrives in duplicate, I had neglected to configure > Gmail to default to reply-to-all behaviour). > I did that earlier as well, it's a curse!

Re: [O] re-search-forward hang in org-link-search

2015-08-13 Thread Pip Cet
Can you try this patch? That appears to fix the issue here, at least for this one file, at the cost of yet another shy group added to the regular expression. diff --git a/lisp/org.el b/lisp/org.el index a908d9e..7f46687 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -11128,18 +11128,18 @@ of matche

Re: [O] [PATCH] Re: Annoying positioning of point when writing footnotes

2015-08-13 Thread Kaushal
@Matt Correct. I have set org-footnote-auto-adjust to t. On Thu, Aug 13, 2015 at 2:16 PM Matt Lundin wrote: > Matt Lundin writes: > > > Gerald Wildgruber writes: > > > >> Matt, thanks! looking forward to any elucidation you can give on the > >> problem at hand! > > > > Could you tell me what t

Re: [O] re-search-forward hang in org-link-search

2015-08-13 Thread Matthew MacLean
On Thu, Aug 13, 2015 at 12:26 PM, Pip Cet wrote: > It's not an Emacs bug. Your regular expression whittles down to: > > (defvar hang-re "^\\*+ *Mawile\\(?:[ ]+\\)+stuff\\(?:[ ]+\\)*$") > > or even > > (defvar hang-re "\\(?:[ ]+\\)+s") > > That expression matches the string of spaces separating th

[O] [PATCH] Re: Annoying positioning of point when writing footnotes

2015-08-13 Thread Matt Lundin
Matt Lundin writes: > Gerald Wildgruber writes: > >> Matt, thanks! looking forward to any elucidation you can give on the >> problem at hand! > > Could you tell me what the value of org-footnote-auto-adjust is on your > machine? > > It seems on my end that the problem only occurs when > org-foot

[O] re-search-forward hang in org-link-search

2015-08-13 Thread Matthew MacLean
So, I found a hang in org-link-search... (In what I think is an Emacs bug, but posting this here certainly can't hurt.) When you have a headline with a tag (For example "Mawile" with ":something:" as a tag), and another headline later in the buffer beginning with the other headline's title within

Re: [O] [BUG] Re: Annoying positioning of point when writing footnotes

2015-08-13 Thread Matt Lundin
Gerald Wildgruber writes: > Matt, thanks! looking forward to any elucidation you can give on the > problem at hand! Could you tell me what the value of org-footnote-auto-adjust is on your machine? It seems on my end that the problem only occurs when org-footnote-auto-adjust is set to t. The pro

Re: [O] [BUG] Re: Annoying positioning of point when writing footnotes

2015-08-13 Thread Kaushal
Thanks! I have this problem too; was going to report this. On Thu, Aug 13, 2015 at 12:43 PM Gerald Wildgruber < gerald.wildgru...@unibas.ch> wrote: > > Matt, thanks! looking forward to any elucidation you can give on the > problem at hand! > > Gerald. > > On Do, Aug 13 2015, Matt Lundin wrote: >

Re: [O] [BUG] Re: Annoying positioning of point when writing footnotes

2015-08-13 Thread Gerald Wildgruber
Matt, thanks! looking forward to any elucidation you can give on the problem at hand! Gerald. On Do, Aug 13 2015, Matt Lundin wrote: > Gerald Wildgruber writes: > >> when doing a "C-c C-x f" in order to insert a footnote in an org mode >> document, the point is strangely positioned on the HEA

[O] [BUG] Re: Annoying positioning of point when writing footnotes

2015-08-13 Thread Matt Lundin
Gerald Wildgruber writes: > when doing a "C-c C-x f" in order to insert a footnote in an org mode > document, the point is strangely positioned on the HEADING under which > footnotes are stored and not, as one would expect, near the actual > footnote marker [fn:X] where the text of the footnote g

Re: [O] Automatically encrypt on save, decrypt on open?

2015-08-13 Thread Eric S Fraga
On Thursday, 13 Aug 2015 at 11:47, Peter Davis wrote: > Thanks! This might be the best solution, since it's really just one > file I want to encrypt/decrypt. If you want to encrypt all the contents of a file, this is indeed the best approach, I think. If you only want to encrypt a small part, the

Re: [O] [gnorb] completion for `gnorb-gnus-incoming-do-todo'

2015-08-13 Thread Thomas Holst
Hi Eric, · Eric Abrahamsen wrote: >> thanks for the gnorb package! I started using it and I like it a lot! >> >> When I call `gnorb-gnus-incoming-do-todo' from gnus I'm prompted for a >> headline. But completion is not working. Neither nor M-j does >> anything. >> >> How can I get completion wo

Re: [O] Automatically encrypt on save, decrypt on open?

2015-08-13 Thread Peter Davis
Thanks! This might be the best solution, since it's really just one file I want to encrypt/decrypt. -pd Eric S Fraga writes: > On Thursday, 13 Aug 2015 at 10:28, Peter Davis wrote: >> I'd like to store information in an org page that gets automatically >> encrypted when I save it, and decryp

Re: [O] Automatically encrypt on save, decrypt on open?

2015-08-13 Thread Eric S Fraga
On Thursday, 13 Aug 2015 at 10:28, Peter Davis wrote: > I'd like to store information in an org page that gets automatically > encrypted when I save it, and decrypted when I open it. Is > there some built-in functionality or hooks for this? An alternative to using org's own encryption facility, as

Re: [O] Automatically encrypt on save, decrypt on open?

2015-08-13 Thread Michael Strey
On Do, 2015-08-13 at 16:28, Peter Davis wrote: > I'd like to store information in an org page that gets automatically > encrypted when I save it, and decrypted when I open it. Is there some > built-in functionality or hooks for this? Check org-crypt.el (http://orgmode.org/manual/org_002dcrypt_002e

Re: [O] named python session

2015-08-13 Thread Ken Mankoff
Hi Andreas, Glad I could help, and THANK YOU for your improvement. I had started to try to use the session name, if present, but never figured it out. It was on my TODO list. -k. On 2015-08-13 at 06:12, Andreas Leha wrote: > Hi Ken, > > Ken Mankoff writes: >> Hi Andreas, >> >> On 2015-0

Re: [O] Automatically encrypt on save, decrypt on open?

2015-08-13 Thread Peter Davis
Thanks, John! I'll give it a try. -pd John Kitchin writes: > see org-crypt http://orgmode.org/worg/org-tutorials/encrypting-files.html > > Here is the setup I have that worked when I tried it last ;) > > ;; encryption > (require 'epa-file) > (unless (memq epa-file-handler file-name-handler-ali

Re: [O] Automatically encrypt on save, decrypt on open?

2015-08-13 Thread John Kitchin
see org-crypt http://orgmode.org/worg/org-tutorials/encrypting-files.html Here is the setup I have that worked when I tried it last ;) ;; encryption (require 'epa-file) (unless (memq epa-file-handler file-name-handler-alist) (epa-file-enable)) (require 'org-crypt) (org-crypt-use-before-save-ma

[O] Annoying positioning of point when writing footnotes

2015-08-13 Thread Gerald Wildgruber
Hi, when doing a "C-c C-x f" in order to insert a footnote in an org mode document, the point is strangely positioned on the HEADING under which footnotes are stored and not, as one would expect, near the actual footnote marker [fn:X] where the text of the footnote goes. this is very annoying as

Re: [O] outorg issue

2015-08-13 Thread Andreas Leha
Hi John, Thanks for the confirmation! Andreas John Kitchin writes: > I can only confirm I have had the same issue for a while. For me it is > mostly when I press shift-tab. regular tab works fine for cycling. > > The problem seems to arise from the point moving to the beginning of the > buffer

[O] Fix for clocking in when org-clock-into-drawer is not a string

2015-08-13 Thread Tom Hinton
Hello, I have encountered a fault in recent versions of org when clocking into a task with a dangling clock when org-clock-into-drawer is an integer rather than a string. It appears the error was a presumption that org-clock-into-drawer would be a string for the construction of a regex. Attache

Re: [O] outorg issue

2015-08-13 Thread John Kitchin
I can only confirm I have had the same issue for a while. For me it is mostly when I press shift-tab. regular tab works fine for cycling. The problem seems to arise from the point moving to the beginning of the buffer when outline-back-to-heading is called, which raises that error. I don't have ti

[O] Automatically encrypt on save, decrypt on open?

2015-08-13 Thread Peter Davis
I'd like to store information in an org page that gets automatically encrypted when I save it, and decrypted when I open it. Is there some built-in functionality or hooks for this? Thank you, -pd

Re: [O] How would you export one headline every time that you tangle the file?

2015-08-13 Thread John Kitchin
I also do something like this for scientific manuscripts, but I usually put it in a heading at the end and tag the heading :noexport:. that gives me some more flexibility to have multiple steps, some notes, etc... e.g. * build :noexport: #+BEGIN_SRC emacs-lisp :tangle no :exports none (org-bab

Re: [O] Bug: Clocking in fails when there is a dangling clock [8.3.1 (8.3.1-16-gf6aa53-elpaplus @ d:/Users/clange/.emacs.d/elpa/org-plus-contrib-20150810/)]

2015-08-13 Thread Rasmus
Hi, Christoph LANGE writes: > Dear Org-mode developers, > > here is another regression in 8.3.1. > > Steps to reproduce: > > 1. Assume a *.org file like this: > > * Clock > CLOCK: [2015-08-13 Thu 15:28] > > 2. With the point somewhere in this tree, run org-clock-in (C-c C-x C-i) > > Expected b

[O] Bug: Clocking in fails when there is a dangling clock [8.3.1 (8.3.1-16-gf6aa53-elpaplus @ d:/Users/clange/.emacs.d/elpa/org-plus-contrib-20150810/)]

2015-08-13 Thread Christoph LANGE
Dear Org-mode developers, here is another regression in 8.3.1. Steps to reproduce: 1. Assume a *.org file like this: * Clock CLOCK: [2015-08-13 Thu 15:28] 2. With the point somewhere in this tree, run org-clock-in (C-c C-x C-i) Expected behaviour: the dangling clock is recognised; Org-mode

Re: [O] Stable releases

2015-08-13 Thread Scott Randby
On 08/13/2015 05:32 AM, Eric S Fraga wrote: On Wednesday, 12 Aug 2015 at 15:06, Scott Randby wrote: [...] If there are no stable releases, then maybe the web site should not say: "Stable version 8.3.1 (Aug. 2015)." Perhaps "stable" should just be eliminated from that phrase. Certainly, the use

Re: [O] todo autochange to done

2015-08-13 Thread scrawler
On Thu, Aug 13, 2015 at 08:14:31AM -0500, scraw...@gmail.com wrote: > > I spoke too soon. the version in my .emacs is ok, the one I posted here (from > the pdf) isn't... Never mind. Sorry for the noise. -- signature mischievous: "heh, heh, heh" :-)

Re: [O] todo autochange to done

2015-08-13 Thread scrawler
On Thu, Aug 13, 2015 at 08:05:06AM -0500, scraw...@gmail.com wrote: > On Wed, Aug 12, 2015 at 11:39:24PM -0500, Matt Lundin wrote: > > > Check the quote character before org-after-todo-statistics-hook and > > org-summary-todo: it should be ' not ’. > > Ahha! I have the pdf version of the org manu

Re: [O] named python session

2015-08-13 Thread Andreas Leha
Hi Ken, Ken Mankoff writes: > Hi Andreas, > > On 2015-08-12 at 08:06, Andreas Leha > wrote: >> How do I associate that with the python process in *mypy*? >> I am asked to start python when I run python-shell-send-region. > > > I have set up my system so that Org asks for a buffer name every tim

Re: [O] org-bbdb-birthday reminder

2015-08-13 Thread Matt Lundin
Julien Cubizolles writes: > Matt Lundin writes: > >> For advanced reminders of birthdays and the like, you could use a >> diary-sexp: >> >> %%(diary-remind '(org-anniversary 1996 8 20) -7) Someone turns %s > > I'll give it a try thanks, but you need one line per birthday you want > to be reminde

Re: [O] todo autochange to done

2015-08-13 Thread scrawler
On Wed, Aug 12, 2015 at 11:39:24PM -0500, Matt Lundin wrote: > Check the quote character before org-after-todo-statistics-hook and > org-summary-todo: it should be ' not ’. Ahha! I have the pdf version of the org manual and pasted from it. Thanks! -- signature angry: "gr" :-)

Re: [O] Stable releases

2015-08-13 Thread Eric S Fraga
On Wednesday, 12 Aug 2015 at 15:06, Scott Randby wrote: [...] > If there are no stable releases, then maybe the web site should not > say: "Stable version 8.3.1 (Aug. 2015)." Perhaps "stable" should just > be eliminated from that phrase. Certainly, the use of "stable" > confused me. I guess it's

Re: [O] OrgTbl mode not working

2015-08-13 Thread Benjamin Slade
Here is one: >>> \begin{comment} #+ORGTBL: SEND summarytable orgtbl-to-latex :splice t :skip 0 | | | | | | |---+---+---+---+---| | | | | | | \end{comment} >>> [running in AUCTeX mode] regards, ~~

Re: [O] how to run org-repair-property-drawers after upgrade to 8.3?

2015-08-13 Thread Nicolas Goaziou
Hello, Bingo writes: >I have put the defun of org-repair-property-drawers in my .emacs file > copied from http://orgmode.org/Changes.html, and defined a keyboard > shortcut for it: > > (global-set-key (kbd "C-c i") 'org-repair-property-drawers) > > Now after restarting emacs when I go to an

Re: [O] OrgTbl mode not working

2015-08-13 Thread Nicolas Goaziou
Hello, Benjamin Slade writes: > Since some recent update of either orgmode or AUCTeX, OrgTbl-mode is no > longer working for me. The OrgTbl menu appears, and allows me to insert > tables, but it does not treat inserted tables as actual orgmode tables, > but just as regular characters (i.e. I ca

[O] how to run org-repair-property-drawers after upgrade to 8.3?

2015-08-13 Thread Bingo
Hi, I have put the defun of org-repair-property-drawers in my .emacs file copied from http://orgmode.org/Changes.html, and defined a keyboard shortcut for it: (global-set-key (kbd "C-c i") 'org-repair-property-drawers) Now after restarting emacs when I go to an org buffer, and use the keyboard