Semi-off topic, related to this:
brian powell writes:
> So, again, seriously, this thread is misnamed. "What can't you do in
> Emacs/OrgMode?" What can't it be used for?--this should be the thread!
I had four main uses for emacs:
- Programming in SuperCollider
- Email (wanderlust)
- Editing
In the current buffer, org-export-handle-include-file overwrites:
#+INCLUDE: "./some-other-file.org"
with contents of the other file. For example,
#+BEGIN_EXAMPLE
* other file header
:PROPERTIES:
:OTHER_PROPS: yes
:END:
Contents of the other file.
#+END_EXAMPLE
Is this the intended behaviour?
Hello Tom,
On Dec 7, 2012 3:35 PM, "Thomas S. Dye" wrote:
>
> Aloha Jon,
>
> With this macro:
>
> #+MACRO: code @@info:@code{$1}@@
>
> this Org source:
>
> {{{code([@@b])}}}
>
> is exported as:
>
> @code{[b]@}.
>
> Any idea how to get @code{[@@b]} instead?
You should be able to simply use
Hi,
I would like to add a class to a list on html export. So, this:
#+BEGIN_EXAMPLE
- [[#][Home]]
- [[#about][About]]
- [[#contact][Contact]]
#+END_EXAMPLE
becomes this:
#+BEGIN_EXAMPLE
Home
About
Contact
#+END_EXAMPLE
I've been back and forth through the docs and I can't place a way t
Hi Vikas,
On 6 Dec 2012, at 11:49, Vikas Rawal wrote:
> I would like to have a section in the index.html that shows links to
> recently changed/added html pages. It would be nice if I could show
> titles of such pages, and create links from these titles to the files.
I'm not sure exactly how t
Hi,
I am trying to modify the way speedbar interacts with org files (for
the purpose of the 'writers room' project I've discussed in other
threads). I wonder if anyone can help me with these two issues:
- when I browse an org file in speedbar (and, interestingly, some org
files don't seem to wor
On Fri, 2012-12-07 at 19:43 -0500, J. David Boyd wrote:
> What is a TINYCHANGE cookie? I see it alluded to in many messages about
> patches for the Org code base, but googling it has left me with no
> information.
>
> Dave
"If the change is a minor change made by a committer without
copyright
What is a TINYCHANGE cookie? I see it alluded to in many messages about
patches for the Org code base, but googling it has left me with no
information.
Dave
This is in org-mobile.el.
I discovered this while learning to use MobileOrg.
The section of the code that writes out the Priorities (line 462 in org
version 7.9.2) totally ignores the variables org-highest-priority and
org-lowest-priority, and simply sets the #+ALLPRIORITIES value to "A B
C".
I
Today I discovered a really practical add-on for Thunderbird that solved
my problem of how to linking to a mail in Thunderbird:
https://addons.mozilla.org/de/thunderbird/addon/thunderlink/
(It requires some modification of the mimetypes on your system as
described in the documentation.)
Next,
> >> So, again, seriously, this thread is misnamed. "What can't you do in
> >> Emacs/OrgMode?" What can't it be used for?--this should be the thread!
> >>
> >> I'd really like to know. Every week or two, something comes off my very
> >> tiny list, which is just about empty.
> >
> > Seriously
Try /usr/local/info, when I had that problem with org-mode that's where
the file would end up.On Fri, 7 Dec 2012, Rainer M Krug wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hi
>
> I am using org from git using the following commands (in a script):
>
> ##
> c
Ivan Kanis writes:
> Good we got a place! So it will be Stockholm.
>
> The next question is when?
>
> I think like you that a week-end is best. I can't think talking about
> emacs for more than two days. I am thinking between April and June
> 2013.
That's a shame. I would like to come and prese
Aloha Jon,
How can I mark up text in an example block? The following describes what
I'm after, but the markup, @b{} and @i{}, is passed through on export.
#+begin_example
,** Lord of the Rings
My favorite scenes are (in this order)
1. The attack of the Rohirr
An Emacs user conference sounds useful if users are interested in it.
But keep in mind that running a physical conference is a lot of work.
If you have not done it before, you might think it is easy,
and then be very surprised.
--
Dr Richard Stallman
President, Free Software Foundation
51 Frankli
Hi!
Playing around with Agenda today, I developed a perspective what I
want to achieve. Unfortunately, I am not able to come up with a
working configuration :-(
I'd like to have an agenda like that:
,[ What I want to achieve ]
| Friday 7 December 2012
|8:00.. ---
Aloha Jon,
With this macro:
#+MACRO: code @@info:@code{$1}@@
this Org source:
{{{code([@@b])}}}
is exported as:
@code{[b]@}.
Any idea how to get @code{[@@b]} instead?
All the best,
Tom
--
T.S. Dye & Colleagues, Archaeologists
735 Bishop St, Suite 315, Honolulu, HI 96813
Tel: 808-529-
Yes, you're correct, Aaron, thanks. Apparently the secondary substitutions
only get processed after all the questions are asked and the template is
written out to the temp buffer. So the backslash has to be escaped to
survive the first round of substitutions.
I kind of feel that this should be sta
Eric Schulte writes:
> 1. A tiling window manager (I personally use xmonad [1]). This lets you
>navigate all of your windows as if they were Emacs buffers, and
>allows one to go hours using multiple applications without having to
>use a mouse.
I use i3. It's nice and can be configu
This avoids a byte-compiler warning and makes these customizations
easier to find.
--8<---cut here---start->8---
commit 9666909a8db4f8ba54c6cabde40f35cbf82a3b52 (HEAD, refs/heads/lth-mk)
Author: Achim Gratz
Date: Fri Dec 7 21:05:52 2012 +0100
ob-python:
This has been in there for a while and only been visible due to
byte-compiler warnings about free variable result-params. Either the
tests don't really exercise this code path well or we've been lucky that
result-params was bound to the correct value during all those calls.
--8<---cu
On Dec 7, 2012, at 9:50 AM, David Rogers wrote:
> brian powell writes:
>
>> So, again, seriously, this thread is misnamed. "What can't you do in
>> Emacs/OrgMode?" What can't it be used for?--this should be the thread!
>>
>> I'd really like to know. Every week or two, something comes off my
"Nicolas Richard" writes:
> Hello,
>
> (org-babel-edit-distance "foo" "ffoo") returns 0, whereas 1 seems
> appropriate. I don't know much about computing the levenshtein distance,
> but it seems that part of the algorithm (which i found explained on
> fr.wikipedia) is missing from the code. Pleas
Jeff Mickey writes:
> However.. my current issue: I'd like to sort my todo's by when I
> entered them. So in my capture template I put an inactive timestamp at
> the bottom, so my headlines look something like:
>
> --8<---cut here---start->8---
> * Todo
> ** TO
>
> Things you can't do in Emacs that feel as if they *should* be practical,
> even though they currently are not
>
> - Web browsing with ease, and with a full list of currently-expected
> features (i.e. features to make the general public say "Wow! This is
> much better than Firefox! I'm switc
On Fri, Dec 07, 2012 at 05:12:46PM +0100, Alan Schmitt wrote:
> Suvayu Ali writes:
>
> > Since the new exporter is not documented yet, information is absent from
> > the info manual. You can find relevant docs in the source files. I am
> > slowly working towards a tutorial type docs for org-e-b
I had not known about org-entities-user. (New user. I'm barely through the
Guide.)
The documentation certainly looks good. Thanks!
,Douglas
Douglas Lewan
Shubert Ticketing
(201) 489-8600 ext 224
When I do good, I feel good. When I do bad, I feel bad and that's my religion.
- Abraham Lincoln
Achim Gratz writes:
> The last test will fail if run before 15:00... either the clock table code
> gets
> smarter to recognize that you'd want the end of the day when specifying ":tend
> " or the test should specify ":tend ".
I've pushed a fix (29117be) for this issue after checking the
documenta
I do like those kind of future/brainstorming threads :-)
* David Rogers wrote:
>
> Things you can't do in Emacs that feel as if they *should* be practical,
> even though they currently are not
[...]
> - Ability to continue working in other buffers when one buffer is
> busy. Combine this feature
Hi Doug Lewan,
Doug Lewan wrote:
> For notes (and other things) I tend to use non-ASCII characters fairly freely.
> (Among them the most common are: ∃ -- there is, ∀ -- every, ∈ -- in, ∴ --
> therefore, ≡, arrows, bullets, checks, subscripts, superscripts, etc.)
>
> It would be nice to be able to
I describe Org-mode to people using something like: «Org-mode is a
very large box of LEGO bricks. What it does for you? It depends on
the bricks you use and how you combine them. It adopts to your
requirements.»
* Vikas Rawal wrote:
>
> A slightly improved version in my view:
>
> * Org mode is us
Hi Alan,
Alan Schmitt wrote:
> I tried including the result of evaluation a block in several slides,
> but the second time it was not included.
>
> Is it possible to have the results of the evaluation of a block in
> several places?
OOTB, I don't think so. However, you could have a code block whi
Erik Hetzner writes:
> At Thu, 06 Dec 2012 09:51:07 -0600,
> Christopher Allan Webber wrote:
>>
>> OH MY GOODNESS, this is VERY exciting to me!
>>
>> Do you have any screenshots of this in action? I've been thinking of
>> similar things for some time!
> This can also be accomplished using org-
Hi!
I very much like the agenda customization from [1] and I would like
to adopt it for my needs.
What I want to achieve: on top, there should be my normal agenda
(events, tasks, habits, ...) but minus elements tagged with
"reward".
Below, there should be a "section" with all reward-tasks (exclu
For notes (and other things) I tend to use non-ASCII characters fairly freely.
(Among them the most common are: ∃ -- there is, ∀ -- every, ∈ -- in, ∴ --
therefore, ≡, arrows, bullets, checks, subscripts, superscripts, etc.)
It would be nice to be able to configure org-mode to handle them nicely.
On Thu, Dec 6, 2012 at 4:13 PM, Jeff Mickey wrote:
> Hey Org mailing list!
>
> So, I have been using org for years (2006?) now, absolutely adore it.
> The generic org-export in contrib really excites me as well, I want to
> try and write an org-e-mediawiki.el after I learn some more about
> org's
da...@adboyd.com (J. David Boyd) writes:
> How many of y'all have changed the default priorities from 'A', 'B', and
> 'C' to something else.
>
> I've changed mine to '1' - '5', which showed up a bug in MobileOrg, and
> I'm curious why no one else has seen this.
>
> Am I the only one that doesn't l
Hello,
I tried including the result of evaluation a block in several slides,
but the second time it was not included. Here is the code I ran:
#+begin_src org
** Prototype-based objects
#+name: object_example
#+begin_src js :results code output :exports both
var f = function(a) {
this.x =
Suvayu Ali writes:
> Since the new exporter is not documented yet, information is absent from
> the info manual. You can find relevant docs in the source files. I am
> slowly working towards a tutorial type docs for org-e-beamer. When it
> is in shape, I'll push to Worg.
Great.
> That said,
Rasmus writes:
>> Orgmode: your life, in plain text.
>
> I like the idea of a catch phrase (your life, in plain text) and
> perhaps a more detailed paragraph belows, potentially with links.
This phrase is also what first comes to my mind when I try to explain
org-mode to others.
However, it is
Hi Bastien,
Could you please take a look at Bug#12905? If it causes data loss, I
think it should be fixed in the emacs-24 branch. Thanks.
On Fri, Dec 07, 2012 at 03:02:32PM +0100, Alan Schmitt wrote:
> Suvayu Ali writes:
>
> > You could try the publishing facilities in Org.
> >
> > (info "(org)Publishing")
>
> I did not know about that, it's a very nice suggestion. I have one
> question that I did not see addressed in the document
Rainer M Krug writes:
> Hi
>
> I am using org from git using the following commands (in a script):
>
> ##
> cd ~/.emacs.d/org-mode-git/org-mode
> git checkout master
> git fetch --tags origin
> git pull
> git gc
> git checkout master
> make clean
> make
> make autoloads
> make
> There have been great suggestions on how to explain what is org-mode.
> But if we want a catch phrase I'd also vote for this.
>
> Orgmode: your life, in plain text.
I like the idea of a catch phrase (your life, in plain text) and
perhaps a more detailed paragraph belows, potentially with links.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi
I am using org from git using the following commands (in a script):
##
cd ~/.emacs.d/org-mode-git/org-mode
git checkout master
git fetch --tags origin
git pull
git gc
git checkout master
make clean
make
make autoloads
make doc
Hi Joakim,
Good we got a place! So it will be Stockholm.
Roughly how many people can you hold comfortably in a meeting room? It's
important to know so that we don't get too many people.
When we did a Org Mode conference in Paris in 2012 we were very
surprised that 12 people turned up.
The next
Suvayu Ali writes:
> You could try the publishing facilities in Org.
>
> (info "(org)Publishing")
I did not know about that, it's a very nice suggestion. I have one
question that I did not see addressed in the documentation, though: is
it possible to use it with the new exporter?
Thanks a lot,
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 07/12/12 13:57, Matt Price wrote:
> On Fri, Dec 7, 2012 at 3:39 AM, Rainer M Krug wrote:
>> -BEGIN PGP SIGNED MESSAGE- Hash: SHA1
>>
>> On 06/12/12 16:51, Matt Price wrote:
>>> On Thu, Dec 6, 2012 at 9:15 AM, Eric Abrahamsen
>>> wrote:
>
On Fri, Dec 7, 2012 at 3:39 AM, Rainer M Krug wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On 06/12/12 16:51, Matt Price wrote:
>> On Thu, Dec 6, 2012 at 9:15 AM, Eric Abrahamsen
>> wrote:
>>>
>>> On 12/06/12 20:09 PM, Matt Price wrote:
On Thu, Dec 6, 2012 at 3:08 AM, Eric A
On Fri, Dec 07, 2012 at 01:38:50PM +0100, Alan Schmitt wrote:
> Suvayu Ali writes:
>
> > On Fri, Dec 07, 2012 at 11:27:40AM +0100, Alan Schmitt wrote:
> >> Hello,
> >>
> >> I have "#+EXPORT_FILE_NAME: ~/tmp/jsseccloud.tex" in an org file, but
> >> when I export it (either to beamer or to latex),
Suvayu Ali writes:
> On Fri, Dec 07, 2012 at 11:27:40AM +0100, Alan Schmitt wrote:
>> Hello,
>>
>> I have "#+EXPORT_FILE_NAME: ~/tmp/jsseccloud.tex" in an org file, but
>> when I export it (either to beamer or to latex), it's using the name of
>> the file instead of the given file name.
>>
>> A
On Fri, Dec 07, 2012 at 11:27:40AM +0100, Alan Schmitt wrote:
> Hello,
>
> I have "#+EXPORT_FILE_NAME: ~/tmp/jsseccloud.tex" in an org file, but
> when I export it (either to beamer or to latex), it's using the name of
> the file instead of the given file name.
>
> Am I doing something wrong here
Hello,
Jonathan Leech-Pepin writes:
> The new exporter does not properly parse \n characters in macro definitions.
>
> In the old exporter the following:
>
> #+MACRO: test hello\ngoodbye
>
> {{{test}}}
>
> exports to ASCII as:
>
> hello
> goodbye
>
> In the new exporter (e-ascii) it exports as:
It turned out that the bug I encountered was due to
after-change-function in flyspell-lazy. It alters the
match data that's why org-entry-put worked unexpectedly.
https://github.com/rolandwalker/flyspell-lazy/pull/4
On Sun, Dec 2, 2012 at 9:39 AM, Nicolas Goaziou wrote:
> Takafumi Arakaki wri
Eric Abrahamsen schrieb:
> I think by default it tries to guess what you want by looking at what's
> already there: ie it interprets the previous blank line above your
> current heading to mean that you like having blank lines between all
> your headings.
Ah, okay. That makes sense to me. So I'll
Hello,
I have "#+EXPORT_FILE_NAME: ~/tmp/jsseccloud.tex" in an org file, but
when I export it (either to beamer or to latex), it's using the name of
the file instead of the given file name.
Am I doing something wrong here?
Thanks,
Alan
brian powell writes:
> So, again, seriously, this thread is misnamed. "What can't you do in
> Emacs/OrgMode?" What can't it be used for?--this should be the thread!
>
> I'd really like to know. Every week or two, something comes off my very
> tiny list, which is just about empty.
Seriously s
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 06/12/12 16:51, Matt Price wrote:
> On Thu, Dec 6, 2012 at 9:15 AM, Eric Abrahamsen
> wrote:
>>
>> On 12/06/12 20:09 PM, Matt Price wrote:
>>> On Thu, Dec 6, 2012 at 3:08 AM, Eric Abrahamsen
>>> wrote:
Matt Price writes:
> On We
Hey Org mailing list!
So, I have been using org for years (2006?) now, absolutely adore it.
The generic org-export in contrib really excites me as well, I want to
try and write an org-e-mediawiki.el after I learn some more about
org's implementation.
However.. my current issue: I'd like to sort m
brian powell writes:
> If I had to chose: I vote for #1 or something like: "Its your life
> [organized] in plain text."
There have been great suggestions on how to explain what is org-mode.
But if we want a catch phrase I'd also vote for this.
Orgmode: your life, in plain text.
Alan
60 matches
Mail list logo