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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
| |
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
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
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 |
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
+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
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
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
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
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
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
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
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
Spreadsheet section, couldn't find equivalent of (@<..@>) for when you
have table coordinates that look like c4. Does such an equivalent exist?
--
Twitter: JudeDaShiell
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
31 matches
Mail list logo