org.texi: Document `org-mark-element' and `org-mark-subtree'
* org.texi (Structure editing): Document `org-mark-element' and `org-mark-subtree'. (Tag inheritance): Document `org-agenda-use-tag-inheritance'. Thanks to Nathaniel Cunningham for requesting this.
This commit is contained in:
parent
a4b4143132
commit
c8c217aa55
21
doc/org.texi
21
doc/org.texi
|
@ -1471,6 +1471,13 @@ Move subtree up (swap with previous subtree of same
|
||||||
level).
|
level).
|
||||||
@orgcmd{M-S-@key{down},org-move-subtree-down}
|
@orgcmd{M-S-@key{down},org-move-subtree-down}
|
||||||
Move subtree down (swap with next subtree of same level).
|
Move subtree down (swap with next subtree of same level).
|
||||||
|
@orgcmd{M-h,org-mark-element}
|
||||||
|
Mark the element at point. Hitting repeatedly will mark subsequent elements
|
||||||
|
of the one just marked. E.g. hitting @key{M-h} on a paragraph will mark it,
|
||||||
|
hitting @key{M-h} immediately again will mark the next one.
|
||||||
|
@orgcmd{C-c @@,org-mark-subtree}
|
||||||
|
Mark the subtree at point. Hitting repeatedly will mark subsequent subtrees
|
||||||
|
of the same level than the marked subtree.
|
||||||
@orgcmd{C-c C-x C-w,org-cut-subtree}
|
@orgcmd{C-c C-x C-w,org-cut-subtree}
|
||||||
Kill subtree, i.e., remove it from buffer but save in kill ring.
|
Kill subtree, i.e., remove it from buffer but save in kill ring.
|
||||||
With a numeric prefix argument N, kill N sequential subtrees.
|
With a numeric prefix argument N, kill N sequential subtrees.
|
||||||
|
@ -4625,9 +4632,8 @@ changes in the line.}:
|
||||||
@noindent
|
@noindent
|
||||||
@vindex org-use-tag-inheritance
|
@vindex org-use-tag-inheritance
|
||||||
@vindex org-tags-exclude-from-inheritance
|
@vindex org-tags-exclude-from-inheritance
|
||||||
To limit tag inheritance to specific tags, or to turn it off entirely, use
|
To limit tag inheritance to specific tags, use @code{org-tags-exclude-from-inheritance}.
|
||||||
the variables @code{org-use-tag-inheritance} and
|
To turn it off entirely, use @code{org-use-tag-inheritance}.
|
||||||
@code{org-tags-exclude-from-inheritance}.
|
|
||||||
|
|
||||||
@vindex org-tags-match-list-sublevels
|
@vindex org-tags-match-list-sublevels
|
||||||
When a headline matches during a tags search while tag inheritance is turned
|
When a headline matches during a tags search while tag inheritance is turned
|
||||||
|
@ -4638,6 +4644,15 @@ of matches may then become very long. If you only want to see the first tags
|
||||||
match in a subtree, configure the variable
|
match in a subtree, configure the variable
|
||||||
@code{org-tags-match-list-sublevels} (not recommended).
|
@code{org-tags-match-list-sublevels} (not recommended).
|
||||||
|
|
||||||
|
@vindex org-agenda-use-tag-inheritance
|
||||||
|
Tag inheritance is relevant when the agenda search tries to match a tag,
|
||||||
|
either in the @code{tags} or @code{tags-todo} agenda types. In other agenda
|
||||||
|
types, @code{org-use-tag-inheritance} has no effect. Still, you may want to
|
||||||
|
have your tags correctly set in the agenda, so that tag filtering works fine,
|
||||||
|
with inherited tags. Set @code{org-agenda-use-tag-inheritance} to control
|
||||||
|
this: the default value includes all agenda types, but setting this to nil
|
||||||
|
can really speed up agenda generation.
|
||||||
|
|
||||||
@node Setting tags, Tag searches, Tag inheritance, Tags
|
@node Setting tags, Tag searches, Tag inheritance, Tags
|
||||||
@section Setting tags
|
@section Setting tags
|
||||||
@cindex setting tags
|
@cindex setting tags
|
||||||
|
|
Loading…
Reference in New Issue