Rodrigo Morales <moralesrodrigo1...@gmail.com> writes:

> My question is: How to get all the properties (inherited properties
> included) of the current subtree? In the example shown below, I would
> expect the following result

You would need to collect property names by running org-entry-properties
on current heading, it's parent, and so on. You can get parent headings
as (org-element-property :parent (org-element-at-point)) in newer Org or
using org-up-heading-safe.

Then, you can run org-entry-get on the acquired list of property names.

Best,
Ihor



Reply via email to