On Wednesday, 15 Oct 2014 at 21:52, Marcin Borkowski wrote:
> On 2014-10-13, at 09:50, Eric S Fraga wrote:
>
>> You can also /shrink/ individual frames in beamer.
>
> Please note that "can" does *not* imply "should".
Indeed but it's nice to know that it is possible for those cases where
it can be
James Harkins wrote:
> Sebastien Vauban writes:
>
>> I use the following (tricky) settings, which should
> do what you have in
>> mind, if I'm not mistaken:
>>
>> #+begin_src emacs-lisp
>> ;; Don't show scheduled entries in the global `todo' list.
>> (setq org-agenda-todo-ignore-scheduled 'f
Hello William,
> I got tired of waiting for prettify-symbols-mode so I compiled Emacs
> from source, which gives me version 25.0.50.1 (25 being next after
> 24.4).
This looks like a nice mode. Thanks for the hint.
> I noticed something odd with electric-indent-mode, which I had
> enabled, and w
Dear org-mode community,
I have a problem sorting my agenda in the following way: group by
priority descending, and withing each priority (A, B or C), sort by
category as configured in org-agenda-files.
My org-agenda-sorting-strategy is set to '(priority-down category-keep).
What I see in the ag
Andreas Leha writes:
> Charles Berry writes:
>> Andreas Leha med.uni-goettingen.de> writes:
>>
>>>
>>> Hi all,
>>>
>>> There seems to be a bug in table passing as variables now using the
>>> tangle-friendly version of passing variables.
>>>
>>> Here is an example (I get an error also with ema
I'm trying to get mobileorg set up and working, which has worked. But I
also want to use "org-mobile-sync.el" from ELPA, the actual package
being "org-mobile-sync-20131118.1116". Looking at the source file it
says -
--8<---cut here---start->8---
;;; Commentary:
Hello all,
In more documents than not, it seems I see someone do something like
foo_bar
Common, of course, because most orgmode users are programmers.
Of course this results in the super awkward rendering of
foo(subscripted:bar).
I can't remember *ever* making use of subscript in an orgmode
Christopher Allan Webber wrote:
> In more documents than not, it seems I see someone do something like
>
> foo_bar
>
> Common, of course, because most orgmode users are programmers.
>
> Of course this results in the super awkward rendering of
> foo(subscripted:bar).
>
> I can't remember *ever* ma
James Harkins writes:
> I do think this issue qualifies as a bug (albeit minor). The real
> behavior deviates from the documentation (in a way that's difficult to
> justify logically). IMO it should be fixed, or the documentation
> should explain that the after todo statistics hook doesn't work f
Hello,
Eric Abrahamsen writes:
> Thanks for the review! Particularly the concision of this last. I'm
> afraid I may never get used to two spaces at the end of a sentence,
> though...
Patch applied. Thank you.
Regards,
--
Nicolas Goaziou
Hello,
Mishal Awadah writes:
> According to Andreas, this is an org-mode issue:
> https://answers.launchpad.net/python-mode/+question/248031
The function `org-export-format-source-code-or-example' doesn't exist
anymore, so I think this bug should be closed.
Regards,
--
Nicolas Goaziou
On 2014-10-15, at 23:52, Nicolas Goaziou wrote:
> Marcin Borkowski writes:
>
>> I have one more question. What I'm about to do is (basically) put
>> "file:some-file-name::" in front of the link, without changing the
>> description. I could use `org-element-put-property' and (AFAIU)
>> org-elem
Two people are interested so let me share with you that you may easily have
lots of symbols in this current release of Emacs immediately with
http://melpa.milkbox.net/#/pretty-mode
On Thu, Oct 16, 2014 at 3:11 AM, Marco Wahl wrote:
> Hello William,
>
>> I got tired of waiting for prettify-symbol
So if I update org-mode this should work again?
Thanks,
Mish
> On Oct 16, 2014, at 10:04 AM, Nicolas Goaziou wrote:
>
> Hello,
>
> Mishal Awadah writes:
>
>> According to Andreas, this is an org-mode issue:
>> https://answers.launchpad.net/python-mode/+question/248031
>
> The function `org
Hello,
A question on Stack Overflow [1] reported an issue overriding
`org-clock-into-drawer' with properties (specifically, overriding a
global value of t with a property value nil). Looking into the function
`org-clock-into-drawer', the actual behavior did not match the
documented behavior. The a
Mishal Awadah writes:
> So if I update org-mode this should work again?
I don't know, but I can guarantee no bug will come from
`org-export-format-source-code-or-example'.
Regards,
Marcin Borkowski writes:
> OK, so what is the canonical way of doing this? I don't want to use
> org-dp, since it is another dependency.
There is no canonical way. I would personally collect a reverse list of
internal links and proceed from there.
Regards,
Hello,
Kyle Meyer writes:
> A question on Stack Overflow [1] reported an issue overriding
> `org-clock-into-drawer' with properties (specifically, overriding a
> global value of t with a property value nil). Looking into the function
> `org-clock-into-drawer', the actual behavior did not match t
Nicolas Goaziou wrote:
> This is wrong.
>
> If p is a string, e.g. "FOO", return value should be "FOO". Ditto if
> q contains a string.
Right. Thanks for pointing that out. I'll update the patch.
Kyle Meyer wrote:
> Nicolas Goaziou wrote:
>> This is wrong.
>>
>> If p is a string, e.g. "FOO", return value should be "FOO". Ditto if
>> q contains a string.
>
> Right. Thanks for pointing that out. I'll update the patch.
This new patch should handle that correctly.
>From 84799f9b9f4a2e89b3e7
Kyle Meyer writes:
> This new patch should handle that correctly.
Thanks.
> (cond
> - ((or (not (or p q)) (equal p "nil") (equal q "nil"))
> org-clock-into-drawer)
> - ((or (equal p "t") (equal q "t")) "LOGBOOK")
> - ((not p) q)
> - (t p
> + ((not (or p q)) org-clo
Nicolas Goaziou wrote:
> Kyle Meyer writes:
> Actually, it doesn't work either. Under some circumstances (e.g, when
> p is a drawer name and q is "t"), q will have precedence over p, which
> is not desirable.
Good point.
> What about this?
>
> (cond ((equal p "nil") nil)
> ((equal p "
On 2014-10-16, at 22:10, Nicolas Goaziou wrote:
> Marcin Borkowski writes:
>
>> OK, so what is the canonical way of doing this? I don't want to use
>> org-dp, since it is another dependency.
>
> There is no canonical way. I would personally collect a reverse list of
> internal links and proceed
Marcin Borkowski writes:
> On 2014-10-15, at 23:52, Nicolas Goaziou wrote:
>
>> Marcin Borkowski writes:
>>
>>> I have one more question. What I'm about to do is (basically) put
>>> "file:some-file-name::" in front of the link, without changing the
>>> description. I could use `org-element-put
Kyle Meyer writes:
> Nice. Thanks for fixing my fixes.
Patch applied. Thank you.
Regards,
At Thu, 16 Oct 2014 18:39:46 +0200,
Nicolas Goaziou wrote:
> `org-todo-statistics-hook' is used for TODO (i.e. headlines) and
> `org-checkbox-statistics-hook' is used for checkboxes (i.e. lists).
> I see no bug here (although they aren't called with the same arguments,
> but that's another story).
At
http://orgmode.org/manual/Export-settings.html
I read
,
| ‘SELECT_TAGS’
| The tags that select a tree for export (org-export-select-tags). The
| default value is :export:. Within a subtree tagged with :export:,
| you can still exclude entries with :noexport: (see below). Whe
Brady Trainor uw.edu> writes:
>
> I read
>
> ,
> | ‘SELECT_TAGS’
> | The tags that select a tree for export (org-export-select-tags). The
> | default value is :export:. Within a subtree tagged with :export:,
> | you can still exclude entries with :noexport: (see below). When
>
Hi Joost,
> I reported this on September 2nd too. Hitting C-c C-c inside the table
> fixes the formatting. Also moving to a position inside the table and
> doing: M-x org-table-align fixes the formatting. Hence
> I tried to create a new formatter function in order to re-align after
> writing the t
29 matches
Mail list logo