You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously we would call pullFiles() from the pick() handler if we were not in a
rebase, assuming that the default keybinding for both is "p". This needn't be
the case of course, if the user has remapped one or the other.
The consequence of this was that swapping the keybindings for "pullFiles" and
"pushFiles" would work in all panels except the Commits panel (unless "pick" was
also remapped in the same way).
Fix this by using the new AllowFurtherDispatching mechanism of DisabledReasons
to pass the keybinding on to the next handler.
RewordNotSupported: "Rewording commits while interactively rebasing is not currently supported",
1460
1461
ChangingThisActionIsNotAllowed: "Changing this kind of rebase todo entry is not allowed",
1461
1462
NotAllowedMidCherryPickOrRevert: "This action is not allowed while cherry-picking or reverting",
1463
+
PickIsOnlyAllowedDuringRebase: "This action is only allowed while rebasing",
1462
1464
DroppingMergeRequiresSingleSelection: "Dropping a merge commit requires a single selected item",
1463
1465
CherryPickCopy: "Copy (cherry-pick)",
1464
1466
CherryPickCopyTooltip: "Mark commit as copied. Then, within the local commits view, you can press `{{.paste}}` to paste (cherry-pick) the copied commit(s) into your checked out branch. At any time you can press `{{.escape}}` to cancel the selection.",
0 commit comments