Function: magit-rebase-edit

magit-rebase-edit is an autoloaded, interactive and byte-compiled function defined in magit-sequence.el.

Signature

(magit-rebase-edit)

Documentation

Edit the todo list of the current rebase operation.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-sequence.el
;;;###autoload
(defun magit-rebase-edit ()
  "Edit the todo list of the current rebase operation."
  (interactive)
  (unless (magit-rebase-in-progress-p)
    (user-error "No rebase in progress"))
  (magit-run-git-sequencer "rebase" "--edit-todo"))