Function: treemacs-visit-node-ace-vertical-split
treemacs-visit-node-ace-vertical-split is an interactive and
byte-compiled function defined in treemacs-interface.el.
Signature
(treemacs-visit-node-ace-vertical-split &optional ARG)
Documentation
Open current file by vertically splitting window selected by ace-window.
Stay in the current window with a single prefix argument ARG, or close the treemacs window with a double prefix argument.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-interface.el
(defun treemacs-visit-node-ace-vertical-split (&optional arg)
"Open current file by vertically splitting window selected by `ace-window'.
Stay in the current window with a single prefix argument ARG, or close the
treemacs window with a double prefix argument."
(interactive "P")
(run-hook-with-args
'treemacs-after-visit-functions
(treemacs--execute-button-action
:split-function #'split-window-vertically
:window (ace-select-window)
:file-action (find-file (treemacs-safe-button-get btn :path))
:dir-action (dired (treemacs-safe-button-get btn :path))
:tag-section-action (treemacs--visit-or-expand/collapse-tag-node btn arg nil)
:tag-action (treemacs--goto-tag btn)
:window-arg arg
:no-match-explanation "Node is neither a file, a directory or a tag - nothing to do here.")))