Robert Weiner writes:
> Thanks, Jean. We have started work on a note-taking subsystem for
> Hyperbole that will store UUIDs per note and will likely support backlinks
> too. We are seeing if we can make it support Koutlines, Emacs Outlines,
> Org mode files and Markdown files, searching across
Ihor Radchenko writes:
> The bug is triggered by incorrect result of org-list-struct.
> In org-list-struct with the above invisibility settings,
> current-indentation incorrectly returns 0 on "a", "b", and "c" items. I
> suspect Emacs bug.
After discussion with Emacs devs [1], I have found where
Ihor Radchenko writes:
> "Christopher M. Miles" writes:
>
>> I think the patch is finished. Please review, Ihor. Thanks for helping.
>
> Thanks for the update!
> I have cleaned the manual and ORG-NEWS wordings.
>
> Upon reading the exported version of the manual, I realized that the
> part in 2
Ihor Radchenko writes:
> Done.
> https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=0641ece57b9d980b63e3a3bb6dc4d467eff3051b
>
> I also documented this in doc/Documentation_Standards.org
Great, thank you.
>>> Also, there is one footnote that is indexed (does it even work?):
>>
>> A
Angel de Vicente writes:
> I'm lately finding myself in this situation: I have a number of habits
> that I track, and I want to mark one of them to "DONE", but registering
> not the date when I change its state, but some other date/time (this
> usually happens, for example, with my "sports" habit
Ihor Radchenko writes:
> org-todo-yesterday
:-) fantastic. Not configurable but certainly enough for my purposes.
Many thanks,
--
Ángel de Vicente
Research Software Engineer (Supercomputing and BigData)
Instituto de Astrofísica de Canarias (https://www.iac.es/en)
Richard Lawrence writes:
>> I am attaching an alternative patch to fix the issue using Org element
>> parser. Note that I reused your tests.
>
> FWIW I've tested this patch for a few days and it fixes the issue for
> me. I'd be happy if it were merged.
Thanks for testing.
Applied onto main.
http
Ihor Radchenko writes:
> Jonas Bernoulli writes:
>
>> It used to behave like that before 51a628bc5efc from 2009, which started
>> turning all symbols, including nil, into strings, but without giving any
>> reason why that should be done.
>>
>> It has worked like this for a long time now, so reve
On 02/10/2022 16:14, Ihor Radchenko wrote:
Ihor Radchenko writes:
Max Nikulin writes:
The new version of the patch allows all but first function return nil.
See the attached.
Let me know if there are any other objections.
Ihor, sorry that I left your earlier questions with no response. I ho
Ihor Radchenko writes:
See the attached.
I am not sure if we really need the variable.
AFAIU, acting natively was the default in the past for M-q with no
region selection. Then, I "fixed" some bug report in 05ee1e6ee06db and
introduced the bug herein.
You're right, I had not realised org-fill
It seems I completely failed trying to express my idea.
Instead of extending Org grammar (syntax), I suggest to change behavior
of source blocks during export. In addition to current :results options,
"ast" may be added. Its effect is that instead of adding text to export
buffer that is parsed
Hi,
Ihor Radchenko writes:
Thanks for the clarification!
I did not mean to reduce the font size in affiliated keywords.
I was referring to replacing the display of affiliated keywords:
#+name: A classic
#+tag: easy
will be displayed by Emacs as
#+... A classic :easy:
The underlying text will
Robert Weiner writes:
> We welcome brief summaries of features you need for effective note
> taking in Emacs. We are not looking to do much with images or on
> mobile devices, just focused on people who spend a lot of time in
> Emacs and want an easy-to-use notes system that does not require any
Ihor Radchenko writes:
> May we introduce a new standard macro {{{page-break(backend)}}}
> that will expand to an appropriate
> @@backend: ?
The macro seems like a good idea. The only (minor) inconvenience that I
see, if I have understood it correctly, is in the case of LaTeX, where
there are sev
Ihor Radchenko writes:
> If I were to choose an alternative symbol other than "_", I'd choose
> "@":
>
> @name{}
> @name{{ @name[:key value ...]{}
>
> 1. It is similar to Texinfo
> 2. It does not clash with TeX
> 3. We already use @ in the inline export snippets.
I like the "@" alternative a lot.
Liu Hui writes:
> I have signed the FSF
> copyright assignment paper.
Bastien, could you please confirm the FSF records?
> This patch fixes the bug originally reported in
> https://list.orgmode.org/59e02fb6.1462370a.fffe8.5...@mx.google.com/
> with the following reproducing recipe. The bug s
Ihor Radchenko writes:
> Michael Dauer writes:
>
>> Shouldn't be org-export-resolve-fuzzy-link the relevant function, at least
>> for my use case?
>>
>> But there it looks like it is searching through all elements including
>> inlinetasks, which is in org-element-all-elements:
>> (append pseudo-
Eric,
>
> [[elisp:(some elisp sexp)][Click here to do X]]
>
> Neat! When I open the link I always get a message each time, "Execute ...
as elisp?" Is there a way to get rid of that message?
--
Linux. The choice of a GNU generation.
When point is in a table, I can run (org-element-at-point) and get a
table-row:
table-row (:type standard :begin 4932 :end 5151 :contents-begin 4933
:contents-end 5150 :post-blank 0 :post-affiliated 4932 :parent (table
(:begin 4546 :end 6818 :type org :tblfm nil :contents-begin 4562
:contents-end
Okay I found org-table-get (line column), which is already very helpful.
On Wed, Oct 5, 2022 at 6:17 AM Felix Dorner wrote:
> When point is in a table, I can run (org-element-at-point) and get a
> table-row:
>
> table-row (:type standard :begin 4932 :end 5151 :contents-begin 4933
> :contents-end
Ihor Radchenko writes:
>> Should we consider the above CLOCK line as a valid running clock or
>> maybe it should be parsed as a paragraph?
>
> I am still leaving this question open despite applying the above patch.
> At least, we need to get the bug fixed.
I now made Org parse malformed CLOCK li
Felix Dorner writes:
>> [[elisp:(some elisp sexp)][Click here to do X]]
>>
>> Neat! When I open the link I always get a message each time, "Execute ...
> as elisp?" Is there a way to get rid of that message?
See https://orgmode.org/manual/Code-Evaluation-Security.html
--
Ihor Radchenko,
Org m
Felix Dorner writes:
> Is there a helper or another way so that I can get the elements of that row
> as a list or do I have to extract the fields manually by walking over text?
`org-element-context'.
See https://orgmode.org/worg/dev/org-element-api.html
--
Ihor Radchenko,
Org mode contributor,
Uwe Brauer writes:
> But as you can see @3$17 only gets changed to @3$16 but not to @3$8 as
> it should be.
Thanks for reporting, and sorry for the late reply.
Fixed on main.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=ceb99b86006f9a10a772860c72dd473cb15a72aa
--
Ihor Radche
Eric S Fraga writes:
>> But as you can see @3$17 only gets changed to @3$16 but not to @3$8 as
>> it should be.
>
> Confirmed.
Fixed.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=ceb99b86006f9a10a772860c72dd473cb15a72aa
--
Ihor Radchenko,
Org mode contributor,
Learn more abo
Sébastien Miquel writes:
> Ihor Radchenko writes:
>> See the attached.
>> I am not sure if we really need the variable.
>> AFAIU, acting natively was the default in the past for M-q with no
>> region selection. Then, I "fixed" some bug report in 05ee1e6ee06db and
>> introduced the bug herein.
>
>
Max Nikulin writes:
>> The new version of the patch allows all but first function return nil.
>> See the attached.
>>
>> Let me know if there are any other objections.
>
> Ihor, sorry that I left your earlier questions with no response. I hope,
> the attached diff may illustrate my ideas better
On Thu, Sep 29, 2022 at 4:19 PM Ihor Radchenko wrote:
> Or you can bisect the config to hunt for less obvious issues using
> https://github.com/Malabarba/elisp-bug-hunter
>
I'm preparing a new machine right now, so I will plug into the emacs
configuration one bit ata time and see when the problem
Hi List
I have the following MWE:
* A section
** A Frame
*** A left column
:PROPERTIES:
:BEAMER_COL: 0.48
:END:
*** A right column
:PROPERTIES:
:BEAMER_COL: 0.48
:BEAMER_ACT: <2->
:END:
And I would expect the following tex output:
\s
29 matches
Mail list logo