Function: kotl-mode:move-tree-backward

kotl-mode:move-tree-backward is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:move-tree-backward &optional NUM-TREES)

Documentation

Move current cell before prefix arg num-trees at the same level.

If arg is 0, make it 1; if arg is negative, move to before that number of trees.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:move-tree-backward (&optional num-trees)
  "Move current cell before prefix arg `num-trees' at the same level.
If arg is 0, make it 1; if arg is negative, move to before that number of trees."
  (interactive "p")
  (unless (and (integerp num-trees)
	       (/= num-trees 0))
    (setq num-trees 1))
  (kotl-mode:move-tree-forward (- num-trees)))