Documentation ¶
Index ¶
- Constants
- func BranchStatus(branch *models.Branch, tr *i18n.TranslationSet) string
- func ColoredBranchStatus(branch *models.Branch, tr *i18n.TranslationSet) string
- func GetBranchListDisplayStrings(branches []*models.Branch, fullDescription bool, diffName string, ...) [][]string
- func GetBranchTextStyle(name string) style.TextStyle
- func GetCommitListDisplayStrings(commits []*models.Commit, fullDescription bool, ...) [][]string
- func GetReflogCommitListDisplayStrings(commits []*models.Commit, fullDescription bool, ...) [][]string
- func GetRemoteBranchListDisplayStrings(branches []*models.RemoteBranch, diffName string) [][]string
- func GetRemoteListDisplayStrings(remotes []*models.Remote, diffName string) [][]string
- func GetStashEntryListDisplayStrings(stashEntries []*models.StashEntry, diffName string) [][]string
- func GetSubmoduleListDisplayStrings(submodules []*models.SubmoduleConfig) [][]string
- func GetSuggestionListDisplayStrings(suggestions []*types.Suggestion) [][]string
- func GetTagListDisplayStrings(tags []*models.Tag, diffName string) [][]string
- func OpensMenuStyle(str string) string
- func RenderCommitFileTree(tree *filetree.CommitFileTreeViewModel, diffName string, ...) []string
- func RenderFileTree(tree filetree.IFileTree, diffName string, ...) []string
- func SetCustomBranches(customBranchColors map[string]string)
- type BisectStatus
Constants ¶
View Source
const ( EXPANDED_ARROW = "▼" COLLAPSED_ARROW = "►" )
View Source
const ( INNER_ITEM = " " LAST_ITEM = " " NESTED = " " NOTHING = " " )
keeping these here as individual constants in case later on people want the old tree shape
Variables ¶
This section is empty.
Functions ¶
func BranchStatus ¶ added in v0.30.1
func BranchStatus(branch *models.Branch, tr *i18n.TranslationSet) string
func ColoredBranchStatus ¶ added in v0.30.1
func ColoredBranchStatus(branch *models.Branch, tr *i18n.TranslationSet) string
func GetBranchTextStyle ¶ added in v0.30.1
GetBranchTextStyle branch color
func GetReflogCommitListDisplayStrings ¶ added in v0.20.1
func GetRemoteBranchListDisplayStrings ¶
func GetRemoteBranchListDisplayStrings(branches []*models.RemoteBranch, diffName string) [][]string
func GetStashEntryListDisplayStrings ¶
func GetStashEntryListDisplayStrings(stashEntries []*models.StashEntry, diffName string) [][]string
func GetSubmoduleListDisplayStrings ¶ added in v0.23.1
func GetSubmoduleListDisplayStrings(submodules []*models.SubmoduleConfig) [][]string
func GetSuggestionListDisplayStrings ¶ added in v0.24.1
func GetSuggestionListDisplayStrings(suggestions []*types.Suggestion) [][]string
func OpensMenuStyle ¶ added in v0.35.0
func RenderCommitFileTree ¶ added in v0.35.0
func RenderCommitFileTree( tree *filetree.CommitFileTreeViewModel, diffName string, patchManager *patch.PatchManager, ) []string
func RenderFileTree ¶ added in v0.35.0
func SetCustomBranches ¶ added in v0.35.0
Types ¶
type BisectStatus ¶ added in v0.35.0
type BisectStatus int
similar to the git_commands.BisectStatus but more gui-focused
const ( BisectStatusNone BisectStatus = iota BisectStatusOld BisectStatusNew BisectStatusSkipped // adding candidate here which isn't present in the commands package because // we need to actually go through the commits to get this info BisectStatusCandidate // also adding this BisectStatusCurrent )
Source Files ¶
Click to show internal directories.
Click to hide internal directories.