summaryrefslogtreecommitdiffstats
path: root/src/queue.rs
diff options
context:
space:
mode:
authorUG <55311933+UUGTech@users.noreply.github.com>2023-04-22 06:03:35 +0900
committerGitHub <noreply@github.com>2023-04-21 23:03:35 +0200
commit3a6f292bf5400c98b369848f38d7b07e7eb66b54 (patch)
tree215a9a3957a08008a563fe3c14a6aa487b7c1fcf /src/queue.rs
parenta921ab543b887b258d4e10bb5ab5839515c16d51 (diff)
add fuzzy finder in branch list (#1658)
* add branch_find_popup * capital F for fetch in branchlist, f for find * add command info of return closes #1350
Diffstat (limited to 'src/queue.rs')
-rw-r--r--src/queue.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/queue.rs b/src/queue.rs
index 81282b29..961a53a7 100644
--- a/src/queue.rs
+++ b/src/queue.rs
@@ -113,8 +113,12 @@ pub enum InternalEvent {
///
OpenFileFinder(Vec<TreeFile>),
///
+ OpenBranchFinder(Vec<String>),
+ ///
FileFinderChanged(Option<PathBuf>),
///
+ BranchFinderChanged(Option<usize>),
+ ///
FetchRemotes,
///
OpenPopup(StackablePopupOpen),