summaryrefslogtreecommitdiffstats
path: root/pkg/gui/modes
AgeCommit message (Collapse)Author
2024-02-21Add author filtering to commit viewTristan Déplantes
This commit introduces a new feature to the commit view, allowing users to filter commits based on the author's name or email address. Similar to the existing path filtering functionality, accessible through <c-s>, this feature allows users to filter the commit history by the currently selected commit's author if the commit view is focused, or by typing in the author's name or email address. This feature adds an entry to the filtering menu, to provide users with a familiar and intuitive experience
2023-07-31Add a "Mark commit as base commit for rebase" commandStefan Haller
This allows to do the equivalent of "git rebase --onto <target> <base>", by first marking the <base> commit with the new command, and then selecting the target branch and invoking the usual rebase command there.
2023-07-30Standardise on using lo for slice functionsJesse Duffield
We've been sometimes using lo and sometimes using my slices package, and we need to pick one for consistency. Lo is more extensive and better maintained so we're going with that. My slices package was a superset of go's own slices package so in some places I've just used the official one (the methods were just wrappers anyway). I've also moved the remaining methods into the utils package.
2023-04-30refactor cherry pick code to move state access out of helperJesse Duffield
2022-04-02introduce Ref interfaceRyooooooga
2022-03-17add commit files controllerJesse Duffield
2022-03-17some more refactoringJesse Duffield
2021-06-06refactoringJesse Duffield
2021-04-06show branches context when starting in filtering modeJesse Duffield
2021-04-06refactor of contexts and filteringJesse Duffield