Variable: git-rebase-short-options

git-rebase-short-options is a variable defined in git-rebase.el.

Value

((98 . "break")
 (100 . "drop")
 (101 . "edit")
 (102 . "fixup")
 (108 . "label")
 (109 . "merge")
 (112 . "pick")
 (114 . "reword")
 (115 . "squash")
 (116 . "reset")
 (117 . "update-ref")
 (120 . "exec"))

Documentation

Alist mapping single key of an action to the full name.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-rebase.el
(defvar git-rebase-short-options
  '((?b . "break")
    (?d . "drop")
    (?e . "edit")
    (?f . "fixup")
    (?l . "label")
    (?m . "merge")
    (?p . "pick")
    (?r . "reword")
    (?s . "squash")
    (?t . "reset")
    (?u . "update-ref")
    (?x . "exec"))
  "Alist mapping single key of an action to the full name.")