Function: treesit-explorer-source-buffer-window-select
treesit-explorer-source-buffer-window-select is an interactive and
byte-compiled function defined in treesit.el.gz.
Signature
(treesit-explorer-source-buffer-window-select)
Documentation
Select the treesit--explorer-buffer window.
Invoke this command from the tree window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/treesit.el.gz
(defun treesit-explorer-source-buffer-window-select ()
"Select the `treesit--explorer-buffer' window.
Invoke this command from the tree window."
(interactive)
(if (buffer-live-p treesit--explorer-source-buffer)
(select-window (get-buffer-window treesit--explorer-source-buffer))
(user-error "The `treesit-explorer-mode' source buffer does not exist")))