Function: treesit-explore
treesit-explore is an interactive and byte-compiled function defined
in treesit.el.gz.
Signature
(treesit-explore)
Documentation
Show the explorer.
Probably introduced at or before Emacs version 31.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/treesit.el.gz
(defun treesit-explore ()
"Show the explorer."
(interactive)
(if (and treesit-explore-mode
(buffer-live-p treesit--explorer-buffer))
(display-buffer treesit--explorer-buffer '(nil (inhibit-same-window . t)))
(treesit-explore-mode)))