Arthur Miller writes:
> I have reworked a bit org-capture, but I haven't yet worked on org-agenda
> restrictions and other details.
I do not think that you need to prioritize re-creating
org-capture/org-agenda/etc The main point is making sure that org-select
provides the required functionality.
Hi Ypo,
Ypo writes:
> Hi, Bruno
>
> Yes, I tried your assertion for bug-hunter, but it didn't work.
>
> (unless (eq 'universal-argument (keymap-lookup global-map "C-u"))
> (error "C-u has been redefined"))
>
I'm not sure in what way it didn't work and I didn't try bug-hunter yet.
FW
On 22/06/2022 17:01, Timothy wrote:
— a/lisp/org-attach.el
+++ b/lisp/org-attach.el
@@ -525,7 +525,11 @@ (defun org-attach-attach (file &optional visit-dir method)
[snip]
+(if (or (not noninteractive) (org–should-fetch-remote-resource-p file))
I am confused by (not noninteractive). Do
Hello everyone,
With org-ref (version 3) I meet the following (minor) problem with the
html export of references when I want to give the pages of a book in
numerical csl format.
With LaTeX export, no difficulty: I get
[1, pp. 55-56]
to refer to the book 1 and pages 55-56.
With html export,
On 25/06/2022 12:29, Ihor Radchenko wrote:
Max Nikulin writes:
#+ATTR_HTML: :title The Org mode homepage :style color:red;
[[https://orgmode.org]]
Likely I have seen similar suggestions in this list as well.
Actually it assigns attribute to paragraphs in addition to links. That
is why, I thi
Max Nikulin writes:
> Certainly it is possible to document that attributes are mostly useful
> for image links when they are block-level elements rather than inline
> objects. Caveats of trying to use attributes for inline objects should
> be clearly stated to avoid false expectation of suppor
Hi Joseph,
It looks like what I suggested (e.g. use a csl file that supports what you
want)
This org file:
#+csl-style: american-medical-association-brackets.csl
#+csl-locale: en-US
See [[cite:&kohn-2020-ungrad 55-56]]
bibliography:~/Dropbox/emacs/bibliography/references.bib
leads to this out
On 25/06/2022 17:39, Ihor Radchenko wrote:
Max Nikulin writes:
The following example is somewhat contrived. Try to set different
options (width or e.g. angle) for several inline images. It applies to
LaTeX as well:
#+attr_latex: :center nil :options angle=30 :width 16mm
[[file:/usr
Max Nikulin writes:
> On 25/06/2022 17:39, Ihor Radchenko wrote:
>> Max Nikulin writes:
>>
>>> The following example is somewhat contrived. Try to set different
>>> options (width or e.g. angle) for several inline images. It applies to
>>> LaTeX as well:
>>>
>>> #+attr_latex: :center nil :
Hi, Robert,
Robert Weiner writes:
> We do like avy and as you say, Hyperbole can work with it. We try to
> avoid requiring any non-builtin Emacs packages for Hyperbole. With a
> few, we support them optionally. Unless there is a strong use case
> for utilizing avy in certain ways, we would ten
Just to close the loop here:
Despite multiple reproductions at the time, I can no longer reproduce this.
I'll keep an eye on this function though. Thank you.
On Tue, Jun 14, 2022, at 12:20 AM, Ihor Radchenko wrote:
> "Justin Abrahms" writes:
>
> > All of that is correct, yes.
>
> Which means
Ihor Radchenko writes:
> Thanks! So, Emacs now advises to use "website" and "URL:", right?
> Mentioning this fact, and the relevant commit would improve the commit
> message. (that is: please update the commit message explaining the
> change by changed Emacs recommendations).
Please see the atta
Robert Weiner writes:
> I am happy to answer questions and discuss ways we can make Hyperbole
> and Org work even better together; one direct question per message
> would typically work best. Responses may take awhile as my schedule
> makes it difficult to keep up with high volume mailing lists
Good idea, Juan. I’m all for quick ways to activate buttons without losing
your current context. I’ll take a look at how we might support this as an
optional load.
-- Bob
> On Jun 25, 2022, at 10:32 AM, Juan Manuel Macías
> wrote:
>
> Hi, Robert,
>
> Robert Weiner writes:
>
>> We do lik
Hi David:
Great to see you here too. We could use you on extended Hyperbole
documentation if you ever get into it.
1. The OO-Browser was part of InfoDock, my IDE framework atop XEmacs. I have
updated it for GNU Emacs but never get the time to finish it enough to put it
out there again as Hy
Robert Weiner writes:
> Great to see you here too. We could use you on extended Hyperbole
> documentation if you ever get into it.
Thanks, my hands don't type well anymore or I might've considered it,
> 1. The OO-Browser was part of InfoDock, my IDE framework atop XEmacs.
> I have updated it
Hello,
I seem to be having problems when selecting an Org text block from an
Emacs Lisp snippet. An MVE follows.
Consider a buffer with the following blocks. In this first example, the
Emacs Lisp block runs successfully. The block "foo" is identified
correctly and the point gets moved accordingly
Fabio Natali writes:
> Now consider a slight variation where "Hello world" is formatted as a
> Org heading. The 'org-babel-goto-named-src-block' function is no longer
> able to identify the text block. Executing the Emacs Lisp block results
> in the error message below.
>
> #+name: bar
> #+begin_
Daniel Fleischer writes:
> Thank you very much for the patch. It was merged to master in 4a0d951c.
> Also, you were added to the orgmode contributes at
> https://orgmode.org/worg/contributors.html.
>
> Thanks for the contribution.
This commit triggers
In org-latex--align-string-tabbing:
ox-late
Stefan Kangas writes:
> Ihor Radchenko writes:
>
>> Thanks! So, Emacs now advises to use "website" and "URL:", right?
>> Mentioning this fact, and the relevant commit would improve the commit
>> message. (that is: please update the commit message explaining the
>> change by changed Emacs recomme
It seems like the `org-agenda-custom-commands' docstring had some
missing and incorrect information. Please see the attached patch that
should improve the situation slightly.
From 72dd496e5eba7310854caa6c6daaee2cebd62662 Mon Sep 17 00:00:00 2001
From: Stefan Kangas
Date: Sun, 26 Jun 2022 04:14:54
A session-less block can be executed by starting a session with a special name
(say "*none") which always gets killed after block execution is completed. For
interpreter-less languages, we could use the shell as an interpreter (for
instance, if we wanted to execute C, we could just start a shell
Ivar Fredholm writes:
> A session-less block can be executed by starting a session with a special
> name (say "*none") which always gets killed after block execution is
> completed. For interpreter-less languages, we could use the shell as an
> interpreter (for instance, if we wanted to execut
Ihor Radchenko writes:
> Daniel Fleischer writes:
>
>> Thank you very much for the patch. It was merged to master in 4a0d951c.
>> Also, you were added to the orgmode contributes at
>> https://orgmode.org/worg/contributors.html.
>>
>> Thanks for the contribution.
>
> This commit triggers
>
> In or
Tim Cross writes:
> Sadly, org isn't great from an accessibility perspective. This is
> something I would like to see improved, but it is a huge and complex
> task. There are some 'easy' winds we could try. For example, org still
> defaults to using the and tags instead of
> and . Likewise, we
"Fraga, Eric" writes:
> On Tuesday, 21 Jun 2022 at 10:01, M. ‘quintus’ Gülker wrote:
>> I am working on a presentation for a conference (using org-mode and its
>> beamer export) and want to exchange the entire background for a specific
>> frame with an image. This is possible with Beamer, see
>
>
On Fri, Jun 17, 2022 at 11:09 PM Ihor Radchenko wrote:
> Ihor Radchenko writes:
>
> > Allen Li writes:
> >
> >> On Sat, Jan 1, 2022 at 9:31 AM Allen Li
> wrote:
> >>
> >>> It seems like the right fix here is to make - behave the same as -1,
> and
> >>> raise a user error for any other negative
Ihor Radchenko writes:
> Arthur Miller writes:
>
>> I have reworked a bit org-capture, but I haven't yet worked on org-agenda
>> restrictions and other details.
>
> I do not think that you need to prioritize re-creating
> org-capture/org-agenda/etc The main point is making sure that org-select
>
Ivar Fredholm writes:
> At this point, Babel calls org-babel-execute:python, which decides, based on
> the 'session' header, whether or not to call python3 tmp_code.py or to feed
> each line in tmp_code.py into the session interpreter. What I am wondering is
> if we could replace the code for
Arthur Miller writes:
> Ihor Radchenko writes:
>
>> Arthur Miller writes:
>>
>>> I have reworked a bit org-capture, but I haven't yet worked on org-agenda
>>> restrictions and other details.
>>
>> I do not think that you need to prioritize re-creating
>> org-capture/org-agenda/etc The main poin
Allen Li writes:
>> Would you also be interested to write a test checking org-todo ARGS?
>>
>
> Attached
Thanks! However, it is unclear what this test is checking for.
> +(ert-deftest test-org/org-todo-prefix ()
> + "Test `org-todo' prefix arg behavior."
> + ;; -1 prefix arg should cancel rep
Max Nikulin writes:
> On 22/06/2022 19:13, Arthur Miller wrote:
>> Max Nikulin writes:
>> Menu should and application should be separated in my eyes. Menu is just a
>> graphical/audio? presentation of selectable choice to the user. As such it
>> should display choices, let user pick a choice, and
Ihor Radchenko writes:
> Arthur Miller writes:
>
>> Ihor Radchenko writes:
>>
>>> Arthur Miller writes:
>>>
I have reworked a bit org-capture, but I haven't yet worked on org-agenda
restrictions and other details.
>>>
>>> I do not think that you need to prioritize re-creating
>>> org
Stefan Kangas writes:
> It seems like the `org-agenda-custom-commands' docstring had some
> missing and incorrect information. Please see the attached patch that
> should improve the situation slightly.
Thanks for this patch and for the other stylistic/docstring fixes! It is
great that someone
Attached
On Sat, Jun 25, 2022 at 9:48 PM Ihor Radchenko wrote:
> Allen Li writes:
>
> >> Would you also be interested to write a test checking org-todo ARGS?
> >>
> >
> > Attached
>
> Thanks! However, it is unclear what this test is checking for.
>
> > +(ert-deftest test-org/org-todo-prefix ()
Please, see the attached patch.
>From e12a2bdd28b73661bbe89550409355ebdea7a082 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rudolf=20Adamkovi=C4=8D?=
Date: Sun, 26 Jun 2022 08:04:40 +0200
Subject: [PATCH] Fix incorrectly documented MathJax options
* lisp/org/ox-html.el (org-html-mathjax-options): Fi
Rudolf Adamkovič writes:
> Please, see the attached patch.
> ...
> Subject: [PATCH] Fix incorrectly documented MathJax options
>
> * lisp/org/ox-html.el (org-html-mathjax-options): Fix some incorrect
> choices for 'indent' and 'autonumber' in the docstring
Thanks!
Applied onto main via 15068ce30
Ihor Radchenko writes:
> Applied onto main via 15068ce30.
Forgot to mention that I amended the commit message adding the "." at
the end of the sentence and using the `symbol' quoting style for
symbols.
Best,
Ihor
Allen Li writes:
> Attached
Thanks!
Applied onto main via 711ada5ac.
I changed the patch slightly adding
;; FIXME: Add tests for all other allowed prefix arguments.
line to the test.
Best,
Ihor
Hello,
I only recently became aware of Hyperbole (through Bob's demo video
available on Youtube), and came across this thread while googling to
find more information about Hyperbole. I feel that some of the
questions raised here about Hyperbole sound akin to the story of five
blind men feeling the
Ihor Radchenko writes:
> Tim Cross writes:
>
>> Sadly, org isn't great from an accessibility perspective. This is
>> something I would like to see improved, but it is a huge and complex
>> task. There are some 'easy' winds we could try. For example, org still
>> defaults to using the and tag
41 matches
Mail list logo