Function: org-roam-node-visit

org-roam-node-visit is an interactive and byte-compiled function defined in org-roam-node.el.

Signature

(org-roam-node-visit NODE &optional OTHER-WINDOW FORCE)

Documentation

From the current buffer, visit NODE.

Display the buffer in the selected window. With a prefix argument OTHER-WINDOW display the buffer in another window instead.

If NODE is already visited, this won't automatically move the point to the beginning of the NODE, unless FORCE is non-nil. In interactive calls FORCE always set to t.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-node.el
(defun org-roam-node-visit (node &optional other-window force)
  "From the current buffer, visit NODE.
Display the buffer in the selected window.  With a prefix
argument OTHER-WINDOW display the buffer in another window
instead.

If NODE is already visited, this won't automatically move the
point to the beginning of the NODE, unless FORCE is non-nil. In
interactive calls FORCE always set to t."
  (interactive (list (org-roam-node-at-point t) current-prefix-arg t))
  (org-roam-node-open node (if other-window
                               #'switch-to-buffer-other-window
                             #'pop-to-buffer-same-window)
                      force))