Re: [O] [PATCH] lisp/ob-sql.el: add support for :dbport parameter

2015-04-06 Thread Nicolas Goaziou
Hello, Saulius Menkevičius writes: > This (tiny) patch implements ability to set dbport for org-babel sql > functionality. I often use ssh port forwarding to connect to remote > mysql servers where port is mapped to non-standard one on local > machine. Thank you. > This is my first patch, belo

Re: [O] Define Keyboard Shortcut for "Open in Emacs"

2015-04-06 Thread Xavier Maillard
Jorge A. Alfaro-Murillo writes: > Xavier Maillard writes: > >> Thank you very much for these clarifications. Should I expect >> anything from xdg-* when not using a desktop environment at all? >> (I am using something home-brewed where I could add support for >> something like this but that's no

Re: [O] [PATCH] lisp/ob-sql.el: add support for :dbport parameter

2015-04-06 Thread Xavier Maillard
Saulius Menkevičius writes: > This (tiny) patch implements ability to set dbport for org-babel sql > functionality. I often use ssh port forwarding to connect to remote > mysql servers where port is mapped to non-standard one on local machine. > > This is my first patch, below the 15 line thresh

Re: [O] Best practices to get reminders?

2015-04-06 Thread Jorge A. Alfaro-Murillo
Nikolaus Rath writes: On Apr 06 2015, jorge.alfaro-muri...@yale.edu (Jorge A. Alfaro-Murillo) wrote: Nikolaus Rath writes: However, there's one thing where I feel lost. I don't expect to be editing my orgmode files on a daily basis (at least not yet), so how can I make sure that I don't m

Re: [O] Best practices to get reminders?

2015-04-06 Thread Nikolaus Rath
On Apr 06 2015, Carlos Sosa wrote: > Nikolaus Rath writes: > >> How do other people handle this? Is everyone else opening and working on >> their org files daily so that this becomes a non-issue? > > Have you tried (org-agenda-to-appt) and (appt-activate t)? > If you do end up using those fun

Re: [O] Best practices to get reminders?

2015-04-06 Thread Nikolaus Rath
On Apr 06 2015, jorge.alfaro-muri...@yale.edu (Jorge A. Alfaro-Murillo) wrote: > Nikolaus Rath writes: > >> However, there's one thing where I feel lost. I don't expect to >> be editing my orgmode files on a daily basis (at least not yet), >> so how can I make sure that I don't miss an important

Re: [O] Best practices to get reminders?

2015-04-06 Thread Eric Abrahamsen
Nikolaus Rath writes: > Hello, > > I'm just starting to use org-mode. The first thing I'd like to use it > for is to keep track of stuff that I need to do. Writing things up and > calling up the agenda is easy enough, and I really like how-much > functionality is available in what's essentially a

[O] Hiding "blocked" TODO items

2015-04-06 Thread Nikolaus Rath
Hello, Is there a way to have TODO items "blocking" each other? For example, if I have this document: * TODO Pay water :PROPERTIES: :blocked-on: checks :END: * TODO Pay electricity :PROPERTIES: :blocked-on: checks :END: * TODO Get new checks :PROPERTIES: :id: checks :END: T

Re: [O] Best practices to get reminders?

2015-04-06 Thread Carlos Sosa
Nikolaus Rath writes: > How do other people handle this? Is everyone else opening and working on > their org files daily so that this becomes a non-issue? Have you tried (org-agenda-to-appt) and (appt-activate t)? If you do end up using those functions, and you're using Emacs 24.x, checkou

Re: [O] Best practices to get reminders?

2015-04-06 Thread Jorge A. Alfaro-Murillo
Nikolaus Rath writes: However, there's one thing where I feel lost. I don't expect to be editing my orgmode files on a daily basis (at least not yet), so how can I make sure that I don't miss an important deadline? It seems to me that it doesn't help much if instead of worrying to forget a de

[O] Best practices to get reminders?

2015-04-06 Thread Nikolaus Rath
Hello, I'm just starting to use org-mode. The first thing I'd like to use it for is to keep track of stuff that I need to do. Writing things up and calling up the agenda is easy enough, and I really like how-much functionality is available in what's essentially a plain text document. However, the

Re: [O] Bug: Pressing TAB in table cell with CJK characters sometimes destroys proper column alignment [8.2.10 (8.2.10-dist @ /usr/share/emacs24/site-lisp/org-mode/)]

2015-04-06 Thread Eric Abrahamsen
Eugen Dueck writes: > In a simple org-table like the following: > > | | | > | 漢 | | > > when pressing the TAB key in the bottom left cell, one space character > is removed from that cell and the table thus looks like > > | | | > | 漢 | | > > Pressing TAB again in that cell rem

Re: [O] Inserted Heading Starts on Prior Heading's Fold Mark

2015-04-06 Thread Nicolas Goaziou
Hello, Daniel E. Doherty writes: > I don't know when this started, but recently I've seen the following annoying > behavior from M-RET in org files. > > Here is a minimal file to demonstrate what I'm seeing lately: > > == demo.org == > * Fi

Re: [O] Inserted Heading Starts on Prior Heading's Fold Mark

2015-04-06 Thread John Hendy
On Mon, Apr 6, 2015 at 3:16 PM, Daniel E. Doherty wrote: > John, > > You nailed it. I had that variable set in my custom file to > > '(org-blank-before-new-entry (quote ((heading) (plain-list-item . auto > > which is not a proper alist. When I chaned it back to > > '(org-blank-before-new-ent

[O] [PATCH] lisp/ob-sql.el: add support for :dbport parameter

2015-04-06 Thread Saulius Menkevičius
This (tiny) patch implements ability to set dbport for org-babel sql functionality. I often use ssh port forwarding to connect to remote mysql servers where port is mapped to non-standard one on local machine. This is my first patch, below the 15 line threshold. >From ca3f85877bdf406deefaf66cbac

[O] Bug: Evaluating octave code with :results verbatim prints table [8.2.10 (8.2.10-35-g19a7d6-elpaplus @ /home/martinv/.emacs.d/elpa/org-plus-contrib-20150330/)]

2015-04-06 Thread Martin Vuk
If octave code block is evaluated by C-c C-c, the results are printed as table even if :results verbatim option is used. For example this code #+BEGIN_SRC octave :results verbatim [1 2; 3 4] #+END_SRC #+RESULTS: | 1 | 2 | | 3 | 4 | should return #+RESULTS: 1 2 3 4 without table delimeters

[O] Bug: Pressing TAB in table cell with CJK characters sometimes destroys proper column alignment [8.2.10 (8.2.10-dist @ /usr/share/emacs24/site-lisp/org-mode/)]

2015-04-06 Thread Eugen Dueck
In a simple org-table like the following: | | | | 漢 | | when pressing the TAB key in the bottom left cell, one space character is removed from that cell and the table thus looks like | | | | 漢 | | Pressing TAB again in that cell removes another space character | |

Re: [O] Inserted Heading Starts on Prior Heading's Fold Mark

2015-04-06 Thread Daniel E . Doherty
John, You nailed it. I had that variable set in my custom file to '(org-blank-before-new-entry (quote ((heading) (plain-list-item . auto which is not a proper alist. When I chaned it back to '(org-blank-before-new-entry (quote ((heading . auto) (plain-list-item . auto the bad behav

Re: [O] How to convert CSV text containing newlines to org-table?

2015-04-06 Thread Rasmus
Hi, Kaushal writes: > I have this sample text: > > a,b,c,"def, > ghi" > > When I convert that to org-table using C-u C-c |, I get > > | a| b | c | "def | | > | ghi" | | | | | > > This was my expected outcome: > > | a | b | c | def, | > | | | | ghi | For the reference: L

[O] How to convert CSV text containing newlines to org-table?

2015-04-06 Thread Kaushal
Hi, I have this sample text: a,b,c,"def, ghi" When I convert that to org-table using C-u C-c |, I get | a| b | c | "def | | | ghi" | | | | | This was my expected outcome: | a | b | c | def, | | | | | ghi |

Re: [O] org-cite and org-citeproc

2015-04-06 Thread Richard Lawrence
Hi Aaron and all, Richard Lawrence writes: > Alright, I'll try to move to json.el, and possibly change to having > org-citeproc generate Org markup in the meantime. Just a heads up: I've pushed some changes to my branch of Org to make org-cite use json.el, and to add a basic Org format writer t

Re: [O] Function that jumps to an entry with a certain CUSTOM_ID

2015-04-06 Thread Leo Ufimtsev
+1 * Non-technical feedback :: - Thank you so much for sharing. I've been looking for something like this for a while. - I hope it'll make it into org-mode some way or another, it seems like a valuable addition. - imho the HELM integration is essential. Leo Ufimtsev | Software Engineer @ Ec

Re: [O] Inserted Heading Starts on Prior Heading's Fold Mark

2015-04-06 Thread John Hendy
On Mon, Apr 6, 2015 at 12:05 PM, Daniel E. Doherty wrote: > > I don't know when this started, but recently I've seen the following annoying > behavior from M-RET in org files. I have this on my main Org file and just assumed it was due to it being big and Org having a tough time keeping track of

[O] Inserted Heading Starts on Prior Heading's Fold Mark

2015-04-06 Thread Daniel E . Doherty
I don't know when this started, but recently I've seen the following annoying behavior from M-RET in org files. Here is a minimal file to demonstrate what I'm seeing lately: == demo.org == * First Header Lorem ipsum dolor sit amet, consecte

Re: [O] Define Keyboard Shortcut for "Open in Emacs"

2015-04-06 Thread Jorge A. Alfaro-Murillo
Xavier Maillard writes: Thank you very much for these clarifications. Should I expect anything from xdg-* when not using a desktop environment at all? (I am using something home-brewed where I could add support for something like this but that's not for now). I am not sure. You could try xdg

Re: [O] pdf screen reader accessibility?

2015-04-06 Thread Rasmus
Marcin Borkowski writes: > On 2015-04-06, at 13:40, Rasmus wrote: > >> Jude DaShiell writes: >> >>> http://www.adobe.com/accessibility/products.html >>> is a good place to start. >> >> It's a list of a bunch of software packages of which most are not (i) free >> in any meaning of the word; and

Re: [O] pdf screen reader accessibility?

2015-04-06 Thread Marcin Borkowski
On 2015-04-06, at 13:40, Rasmus wrote: > Jude DaShiell writes: > >> http://www.adobe.com/accessibility/products.html >> is a good place to start. > > It's a list of a bunch of software packages of which most are not (i) free > in any meaning of the word; and (ii) supported on GNU/Linux. So wha

Re: [O] pdf screen reader accessibility?

2015-04-06 Thread Rasmus
Jude DaShiell writes: > http://www.adobe.com/accessibility/products.html > is a good place to start. It's a list of a bunch of software packages of which most are not (i) free in any meaning of the word; and (ii) supported on GNU/Linux. What is your point? > When a document gets written in Mic

[O] orgmode bug capture procedure

2015-04-06 Thread Jude DaShiell
With a linux command that is defective, I can run script and get me a typescript file to send to an author. Is that my best bet for capturing an emacs-orgmode bug? -- Twitter: JudeDaShiell

[O] couldn't find this example in info org

2015-04-06 Thread Jude DaShiell
Spreadsheet section, couldn't find equivalent of (@<..@>) for when you have table coordinates that look like c4. Does such an equivalent exist? -- Twitter: JudeDaShiell

[O] pdf screen reader accessibility?

2015-04-06 Thread Jude DaShiell
http://www.adobe.com/accessibility/products.html is a good place to start. When a document gets written in Microsoft Word, its language is made part of that document. If that document is later converted to a pdf file that language information is taken in by the conversion process then becomes