summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/hierarchy.el
Commit message (Collapse)AuthorAgeFilesLines
* ; Add 2024 to copyright yearsPo Lu2024-01-021-1/+1
|
* ; Add 2023 to copyright years.Eli Zaretskii2023-01-011-1/+1
|
* ; Fix typosStefan Kangas2022-11-181-1/+1
|
* ; Silence warning in last hierarchy.el change.Basil L. Contovounesios2022-10-301-1/+1
|
* Allow Hierarchy to delay computation of childrenWamm K. D2022-10-271-18/+67
| | | | | | | | | | | | | | | | This adds an option to allow callers to specify that computing the children of the hierarchy should be delayed to when the user calls for them, by utilizing the tree-widget :expander property. * lisp/emacs-lisp/hierarchy.el (hierarchy-add-tree) (hierarchy-add-trees): Add parameter 'delay-children-p'. * lisp/emacs-lisp/hierarchy.el (hierarchy--create-delayed-tree-widget): Add function. * lisp/emacs-lisp/hierarchy.el (hierarchy-convert-to-tree-widget): Utilize ':expander' if delaying children. (Bug#55900) * test/lisp/emacs-lisp/hierarchy-tests.el: Add tests for delayed-children functionality.
* ; Add 2022 to copyright years.Eli Zaretskii2022-01-011-1/+1
|
* ; * etc/NEWS: Improve wording of an item.Stefan Kangas2021-09-211-2/+3
| | | | * lisp/emacs-lisp/hierarchy.el: Improve wording of package description.
* Update copyright year to 2021Paul Eggert2021-01-011-1/+1
| | | | Run "TZ=UTC0 admin/update-copyright".
* Add the new library hierarchy.elDamien Cassou2020-08-091-0/+579
* lisp/emacs-lisp/hierarchy.el: New file.