I want to familiarize myself with Emacs' self-documenting help systems so I can figure things out on my own.
Example: I want to learn how to use org-mode's :VISIBILITY:
property so that I can make certain subtrees always open in an expanded state.
I took a guess as to the syntax...
:VISIBILITY: CHILDREN
...but it didn't work.
So I want to use the help system to figure it out.
So I do this:
M-x apropos
Apropos symbol (word list or regexp): org visibility
No help there.
C-h v
Describe variable org visibility
org-inhibit-startup-visibility-stuff
No help there.
C-h a visibility
org-set-visibility-according-to-property is an interactive Lisp function in `org.el'.
(org-set-visibility-according-to-property &optional NO-CLEANUP)
Switch subtree visibilities according to :VISIBILITY: property.
C-h a visibility
org-toggle-custom-properties-visibility is an interactive Lisp function in `org.el'.
(org-toggle-custom-properties-visibility)
...and I still am no closer to knowing how to use org-mode's :VISIBILITY:
property.
How can I use the help system better to find what I'm looking for?