Hi Alan,
> It would be great to be able to configure some of the hard-coded dates
> and time, such as:
> - later today: number of hours (currently 3)
> - start of evening: currently 18:00
> - start of day: currently 08:00
> - start of weekend: currently Saturday (you could use
> `org-agenda-week
Hi!
I am trying to do a call across files with arguments that are references:
=== file:config.org
#+NAME: setup
#+HEADER: :var model=""
#+BEGIN_SRC sh
some bash code that works locally
#+END_SRC
=== file:experiment.org
#+NAME: experiment
| experiment_name | svm_classifier |
| num
Fantastic! All working now.
Cheers,
Chris
On 22 March 2014 09:19, Nicolas Goaziou wrote:
> Hello,
>
> Christopher Witte writes:
>
> > I'm getting a weird problem with orgmode and flyspell mode. Using the
> > latest version of org from git, open the attached file test.org and run
> M-x
> > fly
Achim Gratz writes:
> Eric S Fraga writes:
>> The trace shows that the column has been extracted exactly as I
>> wish.
>
> No, the column has been extracted as a vector, not a table.
Yes, true; what I meant was that the data extracted were the data I
expected to be extracted. The structure may
Andrey Tykhonov writes:
[...]
> There is text2image command line utility which takes a text and converts it
> to the image, then returns a path to the image.
>
> When I execute that block by means of `org-babel-execute-src-block' that
> block executes correctly and returns a path:
>
> #+RESULTS:
James Harkins writes:
> I noticed that C-c C-e h o was running "sensible-browser," and after
> half an hour's completely wasted effort trying to understand the
> update-alternatives system, the only thing I know is that Chrome's
> priority in the system is 200 while Firefox is 40. That explains why
James Harkins writes:
[...]
> I noticed that C-c C-e h o was running "sensible-browser," and after
> half an hour's completely wasted effort trying to understand the
> update-alternatives system, the only thing I know is that Chrome's
> priority in the system is 200 while Firefox is 40. That exp
On Mon, Mar 24, 2014 at 4:40 PM, Eric S Fraga wrote:
> Off topic, sort of, but on Debian, as root:
>
> update-alternatives --config sensible-browser
>
> will allow you to change the default.
In my case, this was not successful.
http://ubuntuforums.org/showthread.php?t=2212948
As shown in this
Eric Schulte writes:
> Rainer M Krug writes:
>
>> Eric Schulte writes:
>>
>>> Charles Berry writes:
>>>
John Hendy gmail.com> writes:
[deleted]
> >
> > I think the default behavior should be reverted, as tangling and
> > exporting are two different things. When I t
Hello,
Bastien writes:
> It looks perfect. I tested* the HTML and LaTeX backend and they do
> exactly what's expected. Thanks a lot for putting this together!
There is still a limitation (which was already present before the
patch), though. The regexp cannot match a radio link next to an
apos
James Harkins gmail.com> writes:
> In my case, this was not successful.
>
> http://ubuntuforums.org/showthread.php?t=2212948
The reason is most likely that sensible-browswer doesn't use alternatives,
i.e. it doesn't end up calling x-www-browser. You may have set BROWSER in
your environment or o
On Mar 22, 2014 3:52 PM, "Bastien" wrote:
>
> James Harkins writes:
>
> > After 243 commits to a constellation of org files, producing 10849
> > lines of LaTeX code from the Beamer exporter, which render into 229
> > pages of beamerarticle print-ready material, including 156 captioned
> > code li
Nicolas Goaziou writes:
> Good luck.
Got my answer. The rest are just details.
Hello,
Rafael writes:
> I think there is a bug in org-beamer-publish-to-pdf. The code of the
> function is:
>
> #+BEGIN_SRC emacs-lisp
> (defun org-beamer-publish-to-pdf (plist filename pub-dir)
> (org-publish-attachment
> plist
> (org-latex-compile (org-publish-org-to 'beamer fi
Hello,
Bastien writes:
> In the meantime, what do you think about the solution I propose?
I think it is a sensible move.
Regards,
--
Nicolas Goaziou
Rainer M Krug writes:
> Eric Schulte writes:
>
>> Rainer M Krug writes:
>>
>>> Eric Schulte writes:
>>>
Charles Berry writes:
> John Hendy gmail.com> writes:
>
> [deleted]
>> >
>> > I think the default behavior should be reverted, as tangling and
>> > export
Eric Schulte writes:
> You can step through the execution of `org-babel-execute:ocaml' by first
> evaluating the function with a prefix argument (meaning with the cursor
> within the function body press C-u C-A-x) which will edebug [1] the
> function.
>
> You can then evaluate an OCaml code block
Bastien writes:
> It looks perfect. I tested* the HTML and LaTeX backend and they do
> exactly what's expected. Thanks a lot for putting this together!
Applied.
--
Nicolas Goaziou
Perhaps this is fixed now, according to comments at:
http://lists.gnu.org/archive/html/emacs-orgmode/2014-03/msg01176.html
(It would be great if someone would keep an eye on these Org bugs that
get reported to Emacs and update them when appropriate.
Although it seems better to report Org bugs t
James Harkins writes:
> For those who wanted to see the article, a current draft is here:
> http://ubuntuone.com/2uszkV2PDUuSgZAtnXwXzZ -- though the subject
> (audio synthesis and real-time control) is likely to be esoteric for
> most.
I don't understand a thing, but I find it beautiful. :)
Hi Achim and Eric,
Eric S Fraga writes:
> This patch seems to work. Thanks!
Achim, feel free to apply the patch when you have time for this,
--
Bastien
I installed this manually, because I don't want to use org from elpa (as
I prefer to stay up to date with the master branch).
Is there a way to install orgbox without pulling the org dependency?
Thanks,
Alan
Hi Nicolas,
Nicolas Goaziou writes:
> However, I'm not sure this is something desirable, but the apostrophe
> problem is mildly annoying.
My intuition is that midword matching will soon be used as a neat
trick, while preventing "target's" to match "<<>>" will prove
annoying. Also, one can easi
Now I set truncate-lines to -1 in my org file, but the table shows
ugly, So I use below code.
Can I use a hook to do this job?
#+begin_src elisp
(defun eh-org-truncate-lines (&optional arg)
(interactive "P")
(cond
((or (and (boundp 'org-clock-overlays) org-clock-overlays)
org-occ
Hello,
Eric Schulte writes:
> Nicolas Goaziou writes:
>>
>> As a side note, I think `org-babel-under-commented-heading-p' is useful
>> enough (with an optional parameter to prevent inheritance, maybe) to be
>> moved into "org.el".
>>
>
> I agree.
Here is the patch.
Regards,
--
Nicolas Goaz
Hi everyone
I want to R output table with plot, I use a solution below,
Who can tell me other solutions?
thanks!
#+begin_src R :results output raw drawer
require("ascii")
print.org <- function (x, caption)
{
print(paragraph(paste("#+CAPTION: ", caption, sep="")),type="org")
p
Nicolas Goaziou writes:
> Hello,
>
> Eric Schulte writes:
>
>> Nicolas Goaziou writes:
>>>
>>> As a side note, I think `org-babel-under-commented-heading-p' is useful
>>> enough (with an optional parameter to prevent inheritance, maybe) to be
>>> moved into "org.el".
>>>
>>
>> I agree.
>
> Here
Hi Nicolas and Eric,
Eric Schulte writes:
> Looks good to me, I'll leave to Bastien since it touches core Org-mode
> functionality and not just Babel.
Looks good to me, please apply,
--
Bastien
On Mon, Mar 24, 2014 at 03:13:24PM +0100, Bastien wrote:
> James Harkins writes:
>
> > For those who wanted to see the article, a current draft is here:
> > http://ubuntuone.com/2uszkV2PDUuSgZAtnXwXzZ -- though the subject
> > (audio synthesis and real-time control) is likely to be esoteric for
On Mon, Mar 24, 2014 at 9:48 AM, Suvayu Ali wrote:
> On Mon, Mar 24, 2014 at 03:13:24PM +0100, Bastien wrote:
>> James Harkins writes:
>>
>> > For those who wanted to see the article, a current draft is here:
>> > http://ubuntuone.com/2uszkV2PDUuSgZAtnXwXzZ -- though the subject
>> > (audio synth
Bastien writes:
> Hi Nicolas and Eric,
>
> Eric Schulte writes:
>
>> Looks good to me, I'll leave to Bastien since it touches core Org-mode
>> functionality and not just Babel.
>
> Looks good to me, please apply,
Applied.
--
Eric Schulte
https://cs.unm.edu/~eschulte
PGP: 0x614CA05D
On Mon, Mar 24, 2014 at 10:22 AM, Feng Shu wrote:
> Hi everyone
>
> I want to R output table with plot, I use a solution below,
> Who can tell me other solutions?
>
I sort of follow the below, but I think it would be more helpful to
describe what you *don't* like about the output below. In other
now that everybody is happy, agreeing, and singing in a circle holding
hands, i thought i'd stir the pot. :] i hope i don't get wicked
glares. :]
there are a few unresolved questions. there is also something that,
for my workflow at least, is a bug.
i set org-export-with-tasks to nil, because
note: this is not a high priority for me, but it seems like a bug, it
can result in surprising behavior for new users, and it helps clarify
this thread, so it seemed worth posting. the ecm is in this thread.
On Monday 24 Mar 2014 20:22:47 James Harkins wrote:
> For those who wanted to see the article, a current draft is here:
> http://ubuntuone.com/2uszkV2PDUuSgZAtnXwXzZ -- though the subject (audio
> synthesis and real-time control) is likely to be esoteric for most.
Can you please post a link to the
On 24 Mar 2014, chandan wrote:
> On Monday 24 Mar 2014 20:22:47 James Harkins wrote:
>> For those who wanted to see the article, a current draft is here:
>> http://ubuntuone.com/2uszkV2PDUuSgZAtnXwXzZ -- though the subject
>> (audio synthesis and real-time control) is likely to be esoteric for
>>
Hi list!
I decided to give org-contacts a try. Since there doesn't seem to be a
facility for importing contacts in vcard format, I wrote a little Python
script for that. Perhaps someone on this list finds it useful.
https://gist.github.com/tmalsburg/9747104
The script uses the Python packag
Hi Alan,
I installed the attached file with M-x package-install-file to avoid
getting org pulled in via (M)ELPA. The large version number means that
new versions of org don’t look like upgrades, preventing them from
overwriting this package. Obviously, you should edit the path to your
git checko
On Mar 18, 2014, at 18:35, "Michael Weylandt"
wrote:
>
> On Mar 8, 2014, at 7:12, Alan Schmitt wrote:
>>
>> I've continued looking into this, and it seems that what I want is use
>> `fill-nobreak-predicate'. This is what I ended up doing:
>>
>> #+begin_src emacs-lisp
>> (add-hook 'org-mode-h
Bastien,
On 23 March 2014 22:51, Guido Van Hoecke wrote:
> Hi Bastien,
>
> Bastien writes:
>
>> Hi Guido,
>>
>> Guido Van Hoecke writes:
>>
>>> The problem remains if I replace '[' and ']' with either '{' and
>>> '}' or '(' and ')'.
>>>
>>> It disappears if I replace them by e.g. '#' and '+'.
>
Hello,
COMMENT keyword is not always clearly defined in Org. Some parts
consider it is a regular keyword as treat it as such (e.g. `org-todo')
whereas some others see it as an additional keyword (e.g.,
`org-priority').
I think the latter makes more sense, and, as a consequence, Org Syntax
(http:/
Hi Bastien,
At Sun, 23 Mar 2014 19:41:45 +0100,
Bastien wrote:
>
> Yasushi SHOJI writes:
>
> > * lisp/org-plot.el (org-plot-quote-tsv-field): Dump data as is when
> > `timeind' is set.
>
> This change produces a compiler warning:
>
> In org-plot-quote-tsv-field:
> org-plot.el:113:22:Warning
does this preserve todo keyword font locking and sorting? it is an
interesting change if so, and i would probably find it useful.
does archive work the same way?
i presume it is a coincidence that this message comes after mine which
mentioned font locking and sorting, as the fix to that message
Hello,
Samuel Wales writes:
> does this preserve todo keyword font locking
This is one goal of the patch.
> and sorting?
IIRC, TODO-based sorting refers to `org-todo-keywords-1', which doesn't
include "COMMENT", so I don't think this changes sorting (i.e., sorting
ignores COMMENT keywords).
Hi,
Context:
Just logged about 60 hours doing a literate programming project with
Org and elisp. Calling org-edit-special to break out into my customized
editing
environment has worked quite well. There, Smartparens (strict mode) or
Paredit keep parentheses
balanced. Sometimes I get lazy though a
John Hendy writes:
> On Mon, Mar 24, 2014 at 10:22 AM, Feng Shu wrote:
>> Hi everyone
>>
>> I want to R output table with plot, I use a solution below,
>> Who can tell me other solutions?
>>
>
> I sort of follow the below, but I think it would be more helpful to
> describe what you *don't* like
Titus von der Malsburg writes:
> Hi list!
>
> I decided to give org-contacts a try. Since there doesn't seem to be a
> facility for importing contacts in vcard format, I wrote a little Python
> script for that. Perhaps someone on this list finds it useful.
>
> https://gist.github.com/tmalsbur
And I posted a solution a few weeks ago that parses the Apple
AddressBook to Org contacts. Wrapped in a LaunchAgent that runs the
script whenever the addressbook is updated (file timestamp changes)
and it keeps mu4e up-to-date with Apple OS X and iDevices.
-k.
On 2014-03-24 at 20:07, Feng Shu
On Mar 25, 2014 3:05 AM, "chandan" wrote:
> Can you please post a link to the sources? I would most probably use
> it as a reference for generating different parts of any documents that
> I would create.
Not just yet.
As I said in the email that you quoted, I'm working on a worg page to
explain
Marcin wrote:
> Just my 2 cents: I've just tried org-reveal and it works like a charm.
Thanks Marcin this looks promising
Rick wrote:
> There are also s5 (ox-s5) and deck.js (ox-deck) exporters in contrib ;).
s5 is what I started with.
But it looks a bit bit-rotten [we are in 2014 and its genera
Dears,
Org is awesome and now I use it as my blogging tool, everything is
perfect except the source code highlighting. Org uses htmlize.el to
highlight source code, it's fine, but when I use another theme or on a
different machine, the generated html(contains source code block) will
change due to
===
* org-shiftmetaright on the following folded header will fail to shift
headline 3
* bug
*** 2
* [[http://www.google.com][google]]
*** 3
===
this is in maint.
thanks.
samuel
this also appears to fail to shift siblings below the link.
On 3/24/14, Samuel Wales wrote:
> ===
> * org-shiftmetaright on the following folded header will fail to shift
> headline 3
> * bug
> *** 2
> * [[http://www.google.com][google]]
> *** 3
> ===
>
> this is in maint.
>
> thanks.
>
> sa
53 matches
Mail list logo