I looked directly into the code and I think I found the issue:
(org-copy-subtree) calls (org-end-of-subtree) without providing an element.
But without an element this function just jumps to (point-max).
I would expect a different behavior or (org-end-of-subtree). Since element
is optional it should
Michael Dauer writes:
> I looked directly into the code and I think I found the issue:
> (org-copy-subtree) calls (org-end-of-subtree) without providing an element.
> But without an element this function just jumps to (point-max).
This is not true. Please make sure that you are using the latest
I probably mis-interpreted the code. Because then I would also fail for
normal headings. Just thinking about the symptoms I think the issue Is that
(org-end-of-subtree) works with type 'headline. And inlinetask is a
different type, right?
IMO org-mode should consistently treat inlinetasks includin
On 17.08.2023 06:04, Jack Kamm wrote:
I attach a 2nd patch implementing this. It also makes ":results table"
the default return type for dict. (Use ":results verbatim" to get the
dict as a string instead).
I am also putting a branch with these changes here:
https://github.com/jackkamm/org-mo
Tom Gillespie writes:
>> My confusion about you patch comes from the fact that
>>
>> #+begin_src emacs-lisp :tangle (if (= 1 1) "yes")
>> 2
>> #+end_src
>>
>> works just fine on main.
>
> It appears to work fine on main, but that is because
> what is actually happening behind the scenes is that i
Jonathan Gregory writes:
>> Ok. Would you mind adding a commit message, as described in
>> https://orgmode.org/worg/org-contribute.html#first-patch?
>
> Patch attached. I also attached a test file.
Thanks!
Applied, onto main.
Fixed.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?i
Juan Manuel Macías writes:
> Here is the modified patch.
Thanks!
> * (org-latex-verse-block): now the treatment of blank lines is
> consistent with the syntax of the LaTeX `verse' environment, and the
> one provided by the `verse' package. If the `:literal' attribute is
> used, all blank lines
writes:
> When adding a custom sequence of todo keywords to `org-todo-keywords', “`[ ]'
> -> `[X]'”, the function `org-todo-list' will not filter to those entries with
> keyword `[ ]', and entries with keyword `[X]' will not be displayed at all.
>
> Steps to reproduce:
> ...
Thanks for reporti
Michael Dauer writes:
> I probably mis-interpreted the code. Because then I would also fail for
> normal headings. Just thinking about the symptoms I think the issue Is that
> (org-end-of-subtree) works with type 'headline. And inlinetask is a
> different type, right?
Yes. Inlinetask is not cons
Jack Kamm writes:
> Following up on a discussion from last month [1], I am reviving my
> proposal from a couple years ago [2] to improve ob-python results
> handling. Since it's a relatively large change, I am sending it to the
> list for review before applying the patch.
Some comments on the pa
Jack Kamm writes:
> I attach a 2nd patch implementing this. It also makes ":results table"
> the default return type for dict. (Use ":results verbatim" to get the
> dict as a string instead).
Thanks!
>> #+begin_src python :results list
>>return {"a": 1, "b": 2}
>> #+end_src
>>
>> #+RESUL
gerard.vermeu...@posteo.net writes:
> Your patches allow anyone to change org-babel-python--def-format-value.
> For instance, I want to use black to "pretty-print" certain tree-like
> structures
May you simply add an extra code to transform output as needed?
--
Ihor Radchenko // yantar92,
Org
Jonas Bernoulli writes:
> I just went through the list of packages mentioned there as being hosted
> on https://github.com/emacsorphanage:
Thanks!
> - org-grep should be delisted as it found a new home at
> https://sr.ht/~minshall/org-grep/
Fixed.
https://git.sr.ht/~bzg/worg/commit/667e1142
Jonas Bernoulli writes:
> I think what we have now is a good compromise. We continue to use the
> existing emacsorphanage for org-related packages, which previously were
> maintained on github anyway. If more org-related packages are abandoned
> and they already use github, then I will continue
I understand your view. From the user perspective inline task are still
more a specialization of a task, which is a specialisation of a heading.
Here is my implementation of how I see it that it should behave:
(defun pm-cut-special ()
"Like org-cut-special but also works on inlinetask."
(inter
Ihor Radchenko writes:
> What about https://github.com/flexibeast/org-vcard and
> https://github.com/nikclayton/ob-sql-mode ?
Are you saying these packages are unmaintained and asking whether they
should be moved to the orphanage?
When I feel like that about a package, I usually open an issue o
Hi all; I added worg co-curator krupalinbox to CC.
On Thu, Aug 17, 2023 at 8:41 AM Jonas Bernoulli wrote:
>
> Ihor Radchenko writes:
>
> > I may miss more org-related repositories from emacsorphanage list.
>
[SNIP]
>
> >> IMO it would be a good idea if Bastien and/or Ihor joined the
> >> emacsor
It seems there is no way to override for a specific code block header
arguments specified for the whole file through #+property:
#+property: header-args:sqlite :header
#+begin_src elisp :results none
(require 'ob-sqlite)
#+end_src
I have tried "nil", etc. for ":header", but column names are a
On 13/08/2023 14:52, Ihor Radchenko wrote:
+ (when separator (format "-separator %s" separator))
It should be escaped as a whole. It seems sqlite3 command line arguments
parser does not support -separator=| variant, so two words should be
quoted separately. Try :separator |
sqlite3:
On 13/08/2023 14:52, Ihor Radchenko wrote:
What do you think about creating a new API to built shell commands and
then using it across all the babel backends?
I support the idea in general, but not its particular implementation as
`org-make-shell-command' in your patch.
It does not address t
On 16/08/2023 18:08, Ihor Radchenko wrote:
Every library will have
(require 'org-foo-9.X "org-foo")
(require 'org-bar-9.X "org-bar")
...
(provide 'org-lib)
(provide 'org-lib-9.X)
Are you going to update patch version of particular library on each
change of macro definitions?
Max Nikulin writes:
> On 16/08/2023 18:08, Ihor Radchenko wrote:
>> Every library will have
>>
>> (require 'org-foo-9.X "org-foo")
>> (require 'org-bar-9.X "org-bar")
>> ...
>> (provide 'org-lib)
>> (provide 'org-lib-9.X)
>
> Are you going to update patch version of particular library on each
>
Michael Dauer writes:
> I understand your view. From the user perspective inline task are still
> more a specialization of a task, which is a specialisation of a heading.
>
> Here is my implementation of how I see it that it should behave:
> (defun pm-cut-special ()
> "Like org-cut-special but
Max Nikulin writes:
> It seems there is no way to override for a specific code block header
> arguments specified for the whole file through #+property:
>
> #+property: header-args:sqlite :header
> #+begin_src elisp :results none
>(require 'ob-sqlite)
> #+end_src
>
> I have tried "nil", etc.
Remember to cover the basics, that is, what you expected to happen and
what in fact did happen. You don't know how to make a good report? See
https://orgmode.org/manual/Feedback.html#Feedback
Your bug report will be posted to the Org mailing list.
--
Guillaume MULLER writes:
> When I start DoomEmacs, I get this message:
>
> ---
> Warning (org-element-cache): org-element--cache: Org parser error in
> packages.el::4667. Resetting.
> The error was: (error "rx ‘**’ range error")
> Backtrace:
> nil
> Please report this to Org mode mailing l
Ihor Radchenko writes:
> Thanks!
>
>> * (org-latex-verse-block): now the treatment of blank lines is
>> consistent with the syntax of the LaTeX `verse' environment, and the
>> one provided by the `verse' package. If the `:literal' attribute is
>> used, all blank lines are preserved and exported as
On 17.08.2023 14:10, Ihor Radchenko wrote:
gerard.vermeu...@posteo.net writes:
Your patches allow anyone to change
org-babel-python--def-format-value.
For instance, I want to use black to "pretty-print" certain tree-like
structures
May you simply add an extra code to transform output as n
On 18.08.2023 06:37, gerard.vermeu...@posteo.net wrote:
On 17.08.2023 14:10, Ihor Radchenko wrote:
gerard.vermeu...@posteo.net writes:
Your patches allow anyone to change
org-babel-python--def-format-value.
For instance, I want to use black to "pretty-print" certain tree-like
structures
On Tue, 2023-08-08 at 22:53 +0800, Ruijie Yu wrote:
> Hello Ihor, Lux and all,
>
> On Aug 8, 2023, at 14:55, Ihor Radchenko wrote:
> >
> > lux writes:
> >
> > > Hi
> > > To facilitate Chinese users' understanding of Org Mode, I have
> > > translated index.org into Simplified Chinese. Please
IR > May you share your changes?
Sure!
Here they are: In these slices I take the upper part of the fork (where in
case, assuming a small-big usage convention ;)) as that is the value that
surely testify the effort estimation overrun. Being so, at the time of this
writing I just realize
31 matches
Mail list logo