summaryrefslogtreecommitdiffstats
path: root/src/queue.rs
diff options
context:
space:
mode:
authorChristoph Rüßler <christoph.ruessler@mailbox.org>2021-05-13 14:11:51 +0200
committerStephan Dilly <dilly.stephan@gmail.com>2021-05-27 21:02:30 +0200
commit2ed6f53dcfe4d5310204d5308d0263d8d6607c3f (patch)
treec9a4ca29f5a0ee303fa307ba68209e85d850bc51 /src/queue.rs
parentbea7edf90e83cece2a7a085a510110ff897c4b56 (diff)
Add popup for tags
This closes #483.
Diffstat (limited to 'src/queue.rs')
-rw-r--r--src/queue.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/queue.rs b/src/queue.rs
index c761598a..be2fc06b 100644
--- a/src/queue.rs
+++ b/src/queue.rs
@@ -33,6 +33,7 @@ pub enum Action {
StashDrop(CommitId),
StashPop(CommitId),
DeleteBranch(String),
+ DeleteTag(String),
ForcePush(String, bool),
PullMerge { incoming: usize, rebase: bool },
AbortMerge,
@@ -59,8 +60,12 @@ pub enum InternalEvent {
///
InspectCommit(CommitId, Option<CommitTags>),
///
+ SelectCommitInRevlog(CommitId),
+ ///
TagCommit(CommitId),
///
+ Tags,
+ ///
BlameFile(String),
///
CreateBranch,