Function: kotl-mode:copy-before
kotl-mode:copy-before is an interactive and byte-compiled function
defined in kotl-mode.el.
Signature
(kotl-mode:copy-before FROM-CELL-REF TO-CELL-REF PARENT-P)
Documentation
Copy tree rooted at FROM-CELL-REF to precede tree rooted at TO-CELL-REF.
If prefix arg PARENT-P is non-nil, make FROM-CELL-REF the first child of TO-CELL-REF's parent, otherwise make it the preceding sibling of TO-CELL-REF.
Leave point at the start of the root cell of the new tree.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:copy-before (from-cell-ref to-cell-ref parent-p)
"Copy tree rooted at FROM-CELL-REF to precede tree rooted at TO-CELL-REF.
If prefix arg PARENT-P is non-nil, make FROM-CELL-REF the first child of
TO-CELL-REF's parent, otherwise make it the preceding sibling of TO-CELL-REF.
Leave point at the start of the root cell of the new tree."
(interactive
(let* ((label (kcell-view:label)))
(append
(hargs:iform-read
(list 'interactive
(format "*+KCopy tree: \n+KCopy tree <%%s> to be %s of cell: "
(if current-prefix-arg "first child of parent"
"preceding sibling")))
(list label label))
(list current-prefix-arg))))
;;
;; Copy tree in current view and leave point at the start of the copy.
(goto-char (kotl-mode:move-before from-cell-ref to-cell-ref parent-p t))
;; Alter the copied tree so each cell appears to be newly created.
(kview:map-tree
(lambda (view)
(kcell-view:set-cell (kcell:create) (kview:id-increment view)))
kotl-kview))