unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Ihor Radchenko <yantar92@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: theophilusx@gmail.com,  acm@muc.de,  emacs-devel@gnu.org
Subject: Re: Convert README.org to plain text README while installing package
Date: Sat, 11 Jun 2022 11:52:05 +0800	[thread overview]
Message-ID: <87tu8rq2l6.fsf@localhost> (raw)
In-Reply-To: <831qvy41oj.fsf@gnu.org>

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Ihor Radchenko <yantar92@gmail.com>
>> Cc: theophilusx@gmail.com,  acm@muc.de,  emacs-devel@gnu.org
>> Date: Thu, 09 Jun 2022 17:15:05 +0800
>> 
>> > Are you sure this is always true?  There are several dozens of
>> > remapped commands; did you audit all of them?
>> 
>> I have audited a couple of them and relied on a good faith to other Org
>> devs + absence of bug reports relevant to the raised concern.
>> Rather then re-checking the remapped functions, I'd rather just fix any
>> concrete bug reports about misbehavior, if such reports arise.
>
> Didn't this discussion raise such "bug reports"?  Why not consider
> what several people here said as such a bug report?  The difference is
> that these reports come from people who use Org rarely, so the
> concerns are different.  But if the Org developers want to have Org
> adopted more widely, I think they should listen to these concerns, not
> reject them.

To clarify, it is metally difficult to process bug reports raised in
such discussions because they are often entangled with quite negative
attitude and much more broad claims.

What I have summarised so far from the discussions:

1. Org mode shadows default C-S-<up>/C-S-<down> bindings.

   This can be solved in two ways:
   a. Change org-support-shift-select to t by default + fix the fact
      that org-support-shift-select is actually ignored by
      C-S-<up>/<down>.
   b. Disable Org mode arrow bindings by default and move them to a
      dedicated minor-mode / setting.
      (This will make existing Org users angry)

   Note that I do not see C-c / and C-c C-s as a bug. The first one is
   not recommended for major-mode but allowed. C-c C-s is dedicated to
   major modes.

2. Org mode binds too many keys

   The solution can be disabling those keys and moving them to dedicated
   minor modes / settings.

   After thinking, I do not like the idea of enabling some keys
   depending on the presence absense of tables/source blocks inside the
   Org file. This will not solve the issue in the files actually
   containing all those and may surprise users.

3. Some of the context-dependent Org command names are confusing as they
   do not reveal what the command does.

   The solution is to rename those commands to something more
   meaningful. Totally doable.
      
4. Org remaps some of the default commands.
   I can see how it can be confusing, but do not see it as a critical
   issue. See my response below.

5. Org mode is too slow to load.
   I do not see an easy way to resolve this apart from general
   refactoring and modularizing. Profiling is not very helpful in this
   specific case, unfortunately. At least, my profiling skills are not
   good enough.

>> While I understand the possible fear of unexpected or unnatural
>> behavior of the remapped command, I'd like to point out that command
>> behavior can span over quite a significant range even without remapping.
>> Just the fact that some major mode does not use remapping, does not mean
>> that you are guaranteed to get the normal command behavior.
>
> Most major modes don't remap global and frequently-used commands.
> Those that do are problematic, and should be fixed rather than be used
> as examples of what's "kosher".

Let's take one example: org-forward-paragraph that is remapping
forward-paragraph.

The docstring is:

Move forward by a paragraph, or equivalent, unit.
...
The function moves point between two structural
elements (paragraphs, tables, lists, etc.).

It also provides the following special moves for convenience:

  - on a table or a property drawer, move to its beginning;
  - on comment, example, export, source and verse blocks, stop
    at blank lines;
  - skip consecutive clocks, diary S-exps, and keywords.

In Org mode, there is no single definition of a paragraph. The
paragraphs or equivalent syntax elements are context-depended and we
have to use parser to know where to move.

The default forward-paragraph can only be controlled by paragraph-start
and paragraph-separate regexps. Both are not sufficient to cater Org
mode. Regexps do not cut it for Org mode.

Hence, the built-in version of forward-paragraph is not usable in Org
mode. If we did not remap it, forward-paragraph would not really move by
paragraph, as it is understood by human. It would be more confusing than
org version of the command.

If you know a better way to resolve the described limitation, please let
me know.

Similar limitations motivated
<remap> <backward-paragraph>	org-backward-paragraph
<remap> <backward-sentence>	org-backward-sentence
<remap> <comment-dwim>		org-comment-dwim
<remap> <forward-paragraph>	org-forward-paragraph
<remap> <forward-sentence>	org-forward-sentence
<remap> <move-beginning-of-line> org-beginning-of-line
<remap> <move-end-of-line>	org-end-of-line
<remap> <delete-indentation>	org-delete-indentation

The following functions have a natural fallback to default behavior and
might be moved to minor-modes enabled by default. However, their default
behavior is context dependent and motivated by the lack of flexibility
of the built-in equivalents. Similar to the above functions.

<remap> <open-line>		org-open-line
<remap> <move-beginning-of-line> org-beginning-of-line
<remap> <move-end-of-line>	org-end-of-line

The following functions might be implemented using built-in Emacs
functionality:

<remap> <transpose-words>	org-transpose-words
could use find-word-boundary-function-table

<remap> <fill-paragraph>	org-fill-paragraph
appears to be redundant as we do set fill-paragraph-function


<remap> <yank>			org-yank
may be instead implemented using yank-handler property (it takes care
about adjusting level of the inserted headlines), but not completely. We
cannot control properties of text from outside of Org mode and thus the
functionality cannot be fully implemented using built-in Emacs features

The following commands are providing convenience self-alignment
functionality and protect from accidental editing of invisible text
(AFAIK, this issue is not addressed by Emacs):
<remap> <kill-line>		org-kill-line
<remap> <delete-backward-char>	org-delete-backward-char
<remap> <delete-char>		org-delete-char
<remap> <self-insert-command>	org-self-insert-command

I am not sure how to achieve equivalent functionality using built-in
Emacs customisations.

The following functions are convenience building for prople coming from
outline mode. I do not see any problem here.

<remap> <outline-backward-same-level> org-backward-heading-same-level
<remap> <outline-demote>	org-demote-subtree
<remap> <outline-forward-same-level> org-forward-heading-same-level
<remap> <outline-insert-heading> org-ctrl-c-ret
<remap> <outline-mark-subtree>	org-mark-subtree
<remap> <outline-next-visible-heading> org-next-visible-heading
<remap> <outline-previous-visible-heading> org-previous-visible-heading
<remap> <outline-promote>	org-promote-subtree
<remap> <outline-show-branches> org-kill-note-or-show-branches
<remap> <outline-show-children> org-fold-show-children
<remap> <outline-show-subtree>	org-fold-show-subtree

>> Some major modes rely on post-command-hook instead of remapping, which
>> not only modifies the original command behavior in unspecified ways, but
>> is also not directly visible from the mode bindings. Or consider changes
>> in filter-buffer-substring-function and how it can modify killing text.
>
> And that is in your opinion a Good Thing?  I don't think it is, and
> therefore don't consider such problematic behavior a good example for
> development.

Maybe. But then we need a more "appropriate" way to implement the
functionality Org provides. See the above.

>> So, I'd say that your concern is not really justified.
>
> ??? Just because "others do that"?

>> There is generally no reliable way to tell if an arbitrary major
>> mode modifies standard command behavior just by looking at its key
>> bindings. You have to rely on faith and report bugs if you stumble
>> upon them.
>
> I don't see how this solves the concerns.  We should still try to
> minimize such problematic behaviors as much as possible.

I'd like you to focus on the last example with
filter-buffer-substring-function or on the ability for major mode to
customise fill-paragraph-function or paragraph-separate, etc. Those
changes can alter the default commands drastically. Yet, they will not
be noticeable by users from looking at the M-x describe-bindings.

I do not say that major modes should change the default behavior in
unexpected ways. Rather the opposite - major modes should adjust the
default commands to behave more expectedly within the major mode
context. However, remapping is by no means an indication that a major
mode is going to change things unexpectedly. Its neither sufficient nor
required condition.

>> > No, not IME.  Show me another general-purpose editing mode that
>> > defines so many key bindings.  The only modes that get close are those
>> > where text is read-only, so normal editing is impossible anyway.
>> ...
>> Auctex binds a decent number of key-bindings. VHDL mode binds even
>> more (I just looked into one of the largest mode built-in prog
>> modes). markdown-mode binds over 100 keys not counting prefix maps.
>
> Two of these aren't part of Emacs, and VHDL is an example of
> programming language, where text is not really for human consumption.

I get your point on VHDL. However, I am not sure why you reject the
non-built-in examples. Are you implying that text modes outside Emacs
core are worse than built-in? At least Auctex is largely popular among
users and yet I have never seen as many complaints about Auctex
complexity as I do for Org (I may be biased).

Auctex and markdown-mode deal with similar editing tasks with Org mode.
The fact that they also use large number of key bindings is an
indication that they are really needed for editing complex documents.

>> >   And even those leave alone basic movement commands, like C-S-<up>
>> > which Alan mentioned.
>> 
>> C-S-<up> is not a basic movement command.
>
> Of course, it is: it moves by paragraphs.

Nope. It is unbound command working because of key translation:

C-<down> (translated from C-S-<down>) runs the command
forward-paragraph (found in global-map), which is an interactive
native compiled Lisp function in ‘paragraphs.el’.

>> By default, it is activating
>> region. Without shift-select-mode, it is not bound to anything.
>
> But shift-select-mode is on by default.

Fair point.

Best,
Ihor



  reply	other threads:[~2022-06-11  3:52 UTC|newest]

Thread overview: 381+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-04 13:14 Convert README.org to plain text README while installing package Akib Azmain Turja
2022-06-04 13:32 ` Tassilo Horn
2022-06-04 14:17   ` Alan Mackenzie
2022-06-04 14:31     ` Tassilo Horn
2022-06-04 17:39       ` Akib Azmain Turja
2022-06-04 16:09     ` Stefan Kangas
2022-06-04 17:27       ` Alan Mackenzie
2022-06-04 21:10         ` Stefan Kangas
2022-06-05  8:38         ` Michael Albinus
2022-06-05  8:51           ` Po Lu
2022-06-05 10:26             ` Tassilo Horn
2022-06-05 11:15               ` Michael Albinus
2022-06-05 16:52                 ` [External] : " Drew Adams
2022-06-06  0:19                 ` Tim Cross
2022-06-06  9:59                   ` Philip Kaludercic
2022-06-06 13:47                     ` Tim Cross
2022-06-06 14:15                       ` Philip Kaludercic
2022-06-06 11:33                   ` Alan Mackenzie
2022-06-06 12:26                     ` Akib Azmain Turja
2022-06-06 13:57                     ` Tim Cross
2022-06-06 16:02                       ` Eli Zaretskii
2022-06-07  6:14                         ` Tim Cross
2022-06-07 11:21                           ` Eli Zaretskii
2022-06-08 13:12                             ` Ihor Radchenko
2022-06-08 14:15                               ` Eli Zaretskii
2022-06-08 15:15                                 ` Ihor Radchenko
2022-06-08 16:16                                   ` Eli Zaretskii
2022-06-09  9:15                                     ` Ihor Radchenko
2022-06-09  9:38                                       ` Eli Zaretskii
2022-06-11  3:52                                         ` Ihor Radchenko [this message]
2022-06-11  6:52                                           ` Eli Zaretskii
2022-06-12  8:40                                             ` Ihor Radchenko
2022-06-12  8:56                                               ` Eli Zaretskii
2022-06-12  9:46                                                 ` Ihor Radchenko
2022-06-12  9:59                                                   ` Eli Zaretskii
2022-06-15  5:13                                                     ` Ihor Radchenko
2022-06-15 12:49                                                       ` Eli Zaretskii
2022-06-17  5:55                                                         ` Ihor Radchenko
2022-06-17  6:40                                                           ` Eli Zaretskii
2022-06-18  4:40                                                             ` Limitations on using Org mode in buffers mixing Org markup with non-Org markup (was: Convert README.org to plain text README while installing package) Ihor Radchenko
2022-06-18  7:10                                                               ` Eli Zaretskii
2022-06-19  5:15                                                                 ` Ihor Radchenko
2022-06-18  5:10                                                             ` Convert README.org to plain text README while installing package Po Lu
2022-06-18 11:28                                                               ` Lars Ingebrigtsen
2022-06-18 13:33                                                                 ` Stefan Monnier
2022-06-18 15:50                                                                   ` tomas
2022-06-18 16:00                                                                     ` Visuwesh
2022-06-18 17:13                                                                       ` tomas
2022-06-18 17:33                                                                         ` Yuri Khan
2022-06-18 23:27                                                                           ` [External] : " Drew Adams
2022-06-18 17:45                                                                         ` Eli Zaretskii
2022-06-18 17:55                                                                         ` Visuwesh
2022-06-18 18:39                                                                           ` tomas
2022-06-18 23:25                                                                         ` [External] : " Drew Adams
2022-06-19  0:24                                                                           ` Tim Cross
2022-06-19  4:35                                                                             ` tomas
2022-06-19  5:36                                                                               ` Tim Cross
2022-06-19  6:43                                                                                 ` tomas
2022-06-19 17:03                                                                                   ` Drew Adams
2022-06-19  1:48                                                                         ` Po Lu
2022-06-19  2:08                                                                           ` Tim Cross
2022-06-19  3:00                                                                             ` Po Lu
2022-06-19  6:07                                                                             ` Eli Zaretskii
2022-06-19  6:41                                                                               ` Tim Cross
2022-06-18 23:22                                                                       ` [External] : " Drew Adams
2022-06-19 11:08                                                                   ` Lars Ingebrigtsen
2022-06-19 17:10                                                                     ` [External] : " Drew Adams
2022-06-20  6:05                                                             ` Kévin Le Gouguec
2022-06-20  8:49                                                               ` Tim Cross
2022-06-12 13:53                                               ` Kévin Le Gouguec
2022-06-12 20:07                                               ` Common keybindings idea for multiple markups Jean Louis
2022-06-08 19:34                             ` Convert README.org to plain text README while installing package Tim Cross
2022-06-09  5:18                               ` Eli Zaretskii
2022-06-09 19:48                               ` Alan Mackenzie
2022-06-11  4:09                                 ` Ihor Radchenko
2022-06-07 16:02                           ` Alan Mackenzie
2022-06-07 18:14                             ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Stefan Monnier
2022-06-07 18:26                               ` Org mode and Emacs Lars Ingebrigtsen
2022-06-07 18:48                                 ` Stefan Monnier
2022-06-07 18:54                                   ` Eli Zaretskii
2022-06-07 19:38                                     ` Stefan Monnier
2022-06-07 20:54                                   ` Lars Ingebrigtsen
2022-06-07 22:10                               ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Tim Cross
2022-06-08  6:06                                 ` Org mode and Emacs Visuwesh
2022-06-08  6:58                                   ` Tim Cross
2022-06-09 22:31                                 ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Richard Stallman
2022-06-09 23:10                                   ` Tim Cross
2022-06-10  5:59                                     ` Eli Zaretskii
2022-06-10  6:20                                       ` Ihor Radchenko
2022-06-10  6:44                                         ` Eli Zaretskii
2022-06-11  4:49                                           ` Tim Cross
2022-06-11  6:58                                             ` Eli Zaretskii
2022-06-11  7:59                                               ` Tim Cross
2022-06-11  8:29                                                 ` Eli Zaretskii
2022-06-12  9:05                                               ` Ihor Radchenko
2022-06-12  9:18                                                 ` Eli Zaretskii
2022-06-12 10:04                                                   ` Ihor Radchenko
2022-06-12 10:15                                                     ` Eli Zaretskii
2022-06-12 10:38                                                       ` Ihor Radchenko
2022-06-12 14:36                                                         ` Eli Zaretskii
2022-06-12 15:31                                                           ` Org mode and Emacs Colin Baxter
2022-06-15  5:19                                                           ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Ihor Radchenko
2022-06-15  6:46                                                             ` Org mode and Emacs David Engster
2022-06-15  7:36                                                               ` Ihor Radchenko
2022-06-15 13:01                                                                 ` Eli Zaretskii
2022-06-16  5:36                                                                   ` Ihor Radchenko
2022-06-16  5:58                                                                     ` Eli Zaretskii
2022-06-16  9:55                                                                       ` Ihor Radchenko
2022-06-15 13:34                                                                 ` David Engster
2022-06-16  6:50                                                                   ` Ihor Radchenko
2022-06-16 10:21                                                                     ` David Engster
2022-06-15 12:50                                                             ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Eli Zaretskii
2022-06-16  7:03                                                               ` Ihor Radchenko
2022-06-16  8:13                                                                 ` Eli Zaretskii
2022-06-16 11:12                                                                   ` Mattias Engdegård
2022-06-16 12:58                                                                     ` Ihor Radchenko
2022-06-16 16:59                                                                       ` Org mode and Emacs Stefan Monnier
2022-06-17  7:18                                                                         ` Larger GC thresholds for non-interactive Emacs (was: Org mode and Emacs) Ihor Radchenko
2022-06-17 13:49                                                                           ` Larger GC thresholds for non-interactive Emacs Stefan Monnier
2022-06-17 15:11                                                                             ` Lars Ingebrigtsen
2022-06-17 15:30                                                                               ` Lars Ingebrigtsen
2022-06-17 16:05                                                                                 ` Stefan Monnier
2022-06-17 16:11                                                                                   ` Lars Ingebrigtsen
2022-06-18  5:35                                                                                   ` Ihor Radchenko
2022-06-18 13:16                                                                                     ` Stefan Monnier
2022-06-17 17:48                                                                               ` Stefan Monnier
2022-06-17 18:20                                                                                 ` Lars Ingebrigtsen
2022-06-17 18:39                                                                                   ` Alan Mackenzie
2022-06-17 22:21                                                                                     ` Stefan Monnier
2022-06-17 22:31                                                                                       ` Lars Ingebrigtsen
2022-06-17 22:53                                                                                   ` Stefan Monnier
2022-06-18  6:11                                                                                     ` Eli Zaretskii
2022-06-18 12:45                                                                                     ` Lars Ingebrigtsen
2022-06-18 13:26                                                                                       ` Stefan Monnier
2022-06-18  2:32                                                                                   ` Stefan Monnier
2022-06-18 12:49                                                                                     ` Lars Ingebrigtsen
2022-06-18 13:06                                                                                       ` Stefan Monnier
2022-06-19 11:03                                                                                         ` Lars Ingebrigtsen
2022-06-18 13:20                                                                                       ` Eli Zaretskii
2022-06-19 11:02                                                                                         ` Lars Ingebrigtsen
2022-06-19 11:11                                                                                           ` Eli Zaretskii
2022-06-21  2:01                                                                                           ` Lynn Winebarger
2022-06-22  0:01                                                                                             ` Lynn Winebarger
2022-06-22 12:59                                                                                               ` Eli Zaretskii
2022-06-22 23:30                                                                                                 ` Lynn Winebarger
2022-06-23  7:09                                                                                                   ` Eli Zaretskii
2022-06-23  7:18                                                                                                     ` Ihor Radchenko
2022-06-23  7:37                                                                                                       ` Eli Zaretskii
2022-06-23  8:02                                                                                                         ` Ihor Radchenko
2022-06-23  8:24                                                                                                           ` Eli Zaretskii
2022-06-23  9:03                                                                                                             ` Ihor Radchenko
2022-06-23 10:08                                                                                                               ` Eli Zaretskii
2022-06-25  5:10                                                                                                                 ` Ihor Radchenko
2022-06-25  6:03                                                                                                                   ` Eli Zaretskii
2022-06-27  9:32                                                                                                                     ` Ihor Radchenko
2022-06-27 13:20                                                                                                                       ` Eli Zaretskii
2022-06-29  9:35                                                                                                                         ` Ihor Radchenko
2022-06-25  7:51                                                                                                                   ` Yuri Khan
2022-06-25  8:28                                                                                                                     ` Eli Zaretskii
2022-06-23 17:07                                                                                                     ` Lynn Winebarger
2022-06-23 18:37                                                                                                       ` Eli Zaretskii
2022-06-23 22:08                                                                                                         ` Lynn Winebarger
2022-06-24  6:53                                                                                                           ` Eli Zaretskii
2022-06-25 16:50                                                                                                             ` Lynn Winebarger
2022-06-22 23:26                                                                                             ` Stefan Monnier
2022-06-22 23:48                                                                                               ` Lynn Winebarger
2022-06-20 12:42                                                                                       ` Lynn Winebarger
2022-06-19  7:25                                                                                     ` Ihor Radchenko
2022-06-19  8:51                                                                                       ` Eli Zaretskii
2022-06-19  9:23                                                                                         ` Ihor Radchenko
2022-06-19  9:23                                                                                     ` Ihor Radchenko
2022-06-19 22:11                                                                                       ` Stefan Monnier
2022-06-20 12:21                                                                                         ` Ihor Radchenko
2022-06-23 22:12                                                                                           ` Stefan Monnier
2022-06-25  5:13                                                                                             ` Ihor Radchenko
2022-06-25  6:08                                                                                               ` Eli Zaretskii
2022-06-25  8:33                                                                                               ` Stefan Monnier
2022-06-18  5:58                                                                                 ` Eli Zaretskii
2022-06-18 13:46                                                                                   ` Stefan Monnier
2022-06-18 14:13                                                                                     ` Eli Zaretskii
2022-06-18  5:28                                                                             ` Ihor Radchenko
2022-07-01  2:34                                                                             ` Lisp-level macro to avoid excessive GC in memory-allocating code (was: Larger GC thresholds for non-interactive Emacs) Ihor Radchenko
2022-07-01  6:18                                                                               ` Eli Zaretskii
2022-07-01  7:52                                                                                 ` Ihor Radchenko
2022-07-01 10:45                                                                                   ` Eli Zaretskii
2022-07-01 11:12                                                                                     ` Ihor Radchenko
2022-07-01 13:56                                                                                       ` Lisp-level macro to avoid excessive GC in memory-allocating code Stefan Monnier
2022-07-01 14:10                                                                                         ` Eli Zaretskii
2022-06-21 13:04                                                                           ` Larger GC thresholds for non-interactive Emacs Lars Ingebrigtsen
2022-06-21 13:35                                                                             ` Lars Ingebrigtsen
2022-06-16  3:19                                                             ` Org mode and Emacs Pankaj Jangid
2022-06-16  4:03                                                               ` Visuwesh
2022-09-25  2:14                                                           ` Bastien
2022-06-12 14:58                                                         ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Eli Zaretskii
2022-06-15  5:48                                                           ` Ihor Radchenko
2022-06-15 16:49                                                             ` Eli Zaretskii
2022-06-17  6:11                                                               ` Ihor Radchenko
2022-06-17  6:41                                                                 ` Eli Zaretskii
2022-06-12 19:25                                                     ` Jean Louis
2022-06-13 12:14                                                       ` Eli Zaretskii
2022-06-13 22:37                                                 ` Richard Stallman
2022-06-14  0:43                                                   ` Ihor Radchenko
     [not found]                                                     ` <87h74mv56b.fsf@localhost>
2022-06-17  6:42                                                       ` Org syntax compatibility with texinfo syntax (was: Org mode and Emacs (was: Convert README.org to plain text README while installing package)) Ihor Radchenko
2022-06-14  2:28                                                   ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Eli Zaretskii
2022-06-14  2:45                                                     ` Ihor Radchenko
2022-06-14 11:04                                                       ` Eli Zaretskii
2022-06-14 11:18                                                         ` Ihor Radchenko
2022-06-14 11:44                                                           ` Eli Zaretskii
2022-06-12 22:38                                               ` Richard Stallman
2022-06-13  4:38                                                 ` Org mode and Emacs Werner LEMBERG
2022-06-13 16:28                                                 ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Christopher Dimech
2022-06-12  0:42                                             ` Richard Stallman
2022-06-12  1:27                                               ` Ihor Radchenko
2022-06-12  5:45                                                 ` Eli Zaretskii
2022-06-12 22:38                                                 ` Richard Stallman
2022-06-12 22:56                                                   ` Tim Cross
2022-06-13  0:39                                                     ` Ihor Radchenko
2022-06-13  1:42                                                       ` Tim Cross
2022-06-13  2:40                                                         ` Ihor Radchenko
2022-06-13  1:47                                                       ` Christopher Dimech
2022-06-13  2:47                                                         ` Ihor Radchenko
2022-06-13  5:04                                                           ` Christopher Dimech
2022-06-13  5:22                                                             ` Org mode and Emacs Werner LEMBERG
2022-06-13  5:59                                                               ` Eli Zaretskii
2022-06-13 11:54                                                       ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Eli Zaretskii
2022-06-14 13:32                                                         ` Ihor Radchenko
2022-06-14 13:45                                                           ` Eli Zaretskii
2022-06-15 23:15                                                           ` Richard Stallman
2022-06-17  6:43                                                             ` Ihor Radchenko
2022-06-14 13:18                                                   ` Ihor Radchenko
2022-06-14 13:38                                                     ` Org mode and Emacs Robert Pluim
2022-06-15  6:13                                                       ` Cusom special block export, similar org org-link :export parameter (was: Org mode and Emacs) Ihor Radchenko
2022-06-15 23:15                                                     ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Richard Stallman
2022-06-17  6:52                                                       ` Ihor Radchenko
2022-06-12  0:42                                     ` Richard Stallman
2022-06-12  1:39                                       ` Tim Cross
2022-06-12  2:40                                         ` Org mode and Emacs T.V Raman
2022-06-12  6:02                                         ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Eli Zaretskii
2022-06-12 22:38                                           ` Richard Stallman
2022-06-13  2:29                                             ` Eli Zaretskii
2022-06-12  1:45                                       ` Org mode and Emacs Po Lu
2022-06-12  2:15                                         ` Ihor Radchenko
2022-06-12  2:36                                           ` David Masterson
2022-06-12  3:06                                             ` Ihor Radchenko
2022-06-12  3:39                                               ` David Masterson
2022-06-12  4:43                                                 ` Tim Cross
2022-06-12  5:08                                                   ` Po Lu
2022-06-12  5:20                                                     ` Ihor Radchenko
2022-06-12  5:27                                                     ` Tim Cross
2022-06-12  5:53                                                   ` David Masterson
2022-06-12  6:56                                                     ` Ihor Radchenko
2022-06-12 18:29                                                       ` David Masterson
2022-06-14  5:09                                                         ` Ihor Radchenko
2022-06-19 23:48                                                           ` David Masterson
2022-06-20  0:03                                                             ` Ihor Radchenko
2022-06-20  0:24                                                               ` David Masterson
2022-06-12  3:28                                             ` Tim Cross
2022-06-12  2:50                                           ` Po Lu
2022-06-12  3:54                                             ` chad
2022-06-12  5:04                                               ` Po Lu
2022-06-12  7:02                                                 ` Ihor Radchenko
2022-06-12 22:38                                                 ` Richard Stallman
2022-06-12 22:38                                                 ` Richard Stallman
2022-06-12  6:21                                               ` Eli Zaretskii
2022-06-12  6:57                                           ` Eli Zaretskii
2022-06-12  4:53                                       ` Org mode and Emacs (was: Convert README.org to plain text README while installing package) Christopher Dimech
2022-06-10 13:56                                   ` Ihor Radchenko
2022-06-10 19:32                                   ` Akib Azmain Turja
2022-06-08 13:22                               ` Ihor Radchenko
2022-06-08 13:33                                 ` Stefan Kangas
2022-06-08 14:23                                 ` Org mode and Emacs Stefan Monnier
2022-06-08 15:08                                   ` Ihor Radchenko
2022-06-12 22:38                                   ` Richard Stallman
2022-06-07 21:51                             ` Convert README.org to plain text README while installing package Tim Cross
2022-06-08 19:26                               ` chad
2022-06-06 19:19                       ` Alan Mackenzie
2022-06-07 10:50                         ` Protesilaos Stavrou
2022-06-07 12:07                           ` Philip Kaludercic
2022-06-07 12:23                             ` Protesilaos Stavrou
2022-06-07 12:27                           ` Stefan Monnier
2022-06-07  0:43                       ` Po Lu
2022-06-07  6:46                         ` Kévin Le Gouguec
2022-06-07  7:53                           ` Po Lu
2022-06-07 22:15                             ` Kévin Le Gouguec
2022-06-08  0:36                               ` Po Lu
2022-06-08  6:41                                 ` Kévin Le Gouguec
2022-06-06 16:56                   ` Michael Albinus
2022-06-07 20:57                   ` Jean Louis
2022-06-08  6:50                     ` Tim Cross
2022-06-08  7:25                       ` Ihor Radchenko
2022-06-08  7:43                         ` Tim Cross
2022-06-08 11:27                           ` Jean Louis
2022-06-08 13:24                           ` Ihor Radchenko
2022-06-08 11:39                       ` Jean Louis
2022-06-11  6:40                       ` Jean Louis
2022-06-11 11:16                         ` Protesilaos Stavrou
2022-06-12 11:32                           ` Jean Louis
2022-06-12  2:23                         ` Tim Cross
2022-06-12 11:41                           ` Jean Louis
2022-06-12 21:58                             ` [External] : " Drew Adams
2022-06-13 22:37                             ` Richard Stallman
2022-06-05 11:23               ` Ihor Radchenko
2022-06-06  0:33                 ` Lars Ingebrigtsen
2022-06-06  0:41                   ` Lars Ingebrigtsen
2022-06-06  0:59                   ` Ihor Radchenko
2022-06-06  1:07                     ` Lars Ingebrigtsen
2022-06-06  1:33                       ` Ihor Radchenko
2022-06-06  7:39                         ` Tassilo Horn
2022-06-08 12:56                           ` Ihor Radchenko
2022-06-06 12:54                         ` Lars Ingebrigtsen
2022-06-06 12:56                         ` Lars Ingebrigtsen
2022-06-08 12:55                           ` Ihor Radchenko
2022-06-05 11:29               ` Lars Ingebrigtsen
2022-06-05 13:39                 ` Stefan Monnier
2022-06-05 14:24                   ` Alan Mackenzie
2022-06-05 14:38                     ` Stefan Monnier
2022-06-05 11:45               ` Po Lu
2022-06-05 11:59                 ` Ihor Radchenko
2022-06-05 13:11                   ` Akib Azmain Turja
2022-06-05 15:32                     ` Tassilo Horn
2022-06-05 17:46                       ` [External] : " Drew Adams
2022-06-05 17:57                         ` Tassilo Horn
2022-06-05 20:12                           ` Stefan Monnier
2022-06-06  0:24                             ` Drew Adams
2022-06-06  0:48                               ` Ihor Radchenko
2022-06-06  1:18                                 ` Drew Adams
2022-06-06  1:38                                   ` Ihor Radchenko
2022-06-06  1:41                                     ` Drew Adams
2022-06-06  1:47                                     ` Stefan Monnier
2022-06-06  7:44                                     ` Tassilo Horn
2022-06-06  9:34                                       ` Ihor Radchenko
2022-06-06  0:23                           ` Drew Adams
2022-06-06  7:20                             ` Tassilo Horn
2022-06-06 15:10                               ` Drew Adams
2022-06-05 15:52                     ` Philip Kaludercic
2022-06-05 17:44                       ` Stefan Monnier
2022-06-06 10:35                         ` Philip Kaludercic
2022-06-07 17:55                           ` Stefan Monnier
2022-06-24  7:18                             ` Akib Azmain Turja
2022-06-24  7:45                               ` Philip Kaludercic
2022-07-15 12:24                                 ` Akib Azmain Turja
2022-07-15 13:07                                   ` Philip Kaludercic
2022-07-15 14:54                                     ` Akib Azmain Turja
2022-06-24 15:42                             ` Philip Kaludercic
2022-06-24 17:50                               ` Stefan Monnier
2022-06-26 10:25                                 ` Philip Kaludercic
2022-06-26 12:22                                   ` Stefan Monnier
2022-06-26 13:08                                     ` Philip Kaludercic
2022-06-26 15:23                                       ` Stefan Monnier
2022-06-27 10:04                                         ` Philip Kaludercic
2022-06-27 12:12                                           ` Stefan Monnier
2022-06-27 14:29                                           ` Yuri Khan
2022-06-27 16:44                                             ` Philip Kaludercic
2022-06-05 11:59               ` Akib Azmain Turja
2022-06-08 17:21               ` Yoni Rabkin
2022-06-05 15:15             ` Ihor Radchenko
2022-06-05 15:22               ` Eli Zaretskii
2022-06-05 15:27                 ` Eli Zaretskii
2022-06-05 15:41                 ` Ihor Radchenko
2022-06-05 15:46                   ` Eli Zaretskii
2022-06-05 15:53                     ` Ihor Radchenko
2022-06-05 16:25                       ` Eli Zaretskii
2022-06-05 15:53                     ` Eli Zaretskii
2022-06-05 15:58                       ` Ihor Radchenko
2022-06-05 16:27                         ` Eli Zaretskii
2022-06-05 16:16                 ` Tassilo Horn
2022-06-05 17:40               ` Stefan Monnier
2022-06-08 12:51                 ` Ihor Radchenko
2022-06-08 14:17                   ` Eli Zaretskii
2022-06-08 14:38                     ` Ihor Radchenko
2022-06-08 14:43                       ` Stefan Monnier
2022-06-08 15:44                         ` Ihor Radchenko
2022-06-08 17:37                           ` Stefan Monnier
2022-06-09  3:11                             ` Ihor Radchenko
2022-06-08 16:02                         ` Eli Zaretskii
2022-06-04 17:32     ` Akib Azmain Turja
2022-06-04 17:22   ` Akib Azmain Turja
2022-06-04 16:36 ` Stefan Monnier
2022-06-05 12:29   ` Akib Azmain Turja
2022-06-05 13:34     ` Stefan Monnier
2022-06-06  3:34       ` Akib Azmain Turja

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87tu8rq2l6.fsf@localhost \
    --to=yantar92@gmail.com \
    --cc=acm@muc.de \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=theophilusx@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).