We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf1dc0 commit 3784a77Copy full SHA for 3784a77
src/popups/conventional_commit.rs
@@ -633,7 +633,16 @@ impl DrawableComponent for ConventionalCommitPopup {
633
"Type of commit"
634
},
635
self.theme.title(true),
636
- )),
+ ))
637
+ .title(if self.is_insert {
638
+ Span::styled(
639
+ "[INSERT]",
640
+ self.theme.title(true),
641
+ )
642
+ .into_right_aligned_line()
643
+ } else {
644
+ "".into()
645
+ }),
646
area,
647
);
648
0 commit comments