| 68 | err error |
| 69 | } |
| 70 | |
| 71 | type availableFilesMsg struct { |
| 72 | files []git.FileStatus |
| 73 | err error |
| 74 | } |
| 75 | |
| 76 | type stagedMsg struct { |
| 77 | err error |
| 78 | } |
| 79 | |
| 80 | func InitializeCommitUI(cfg config.Config, includeEmoji bool) CommitUI { |
| 81 | sp := spinner.New() |
| 82 | sp.Spinner = spinner.Points |
| 83 | sp.Style = lipgloss.NewStyle().Foreground(style.ColorAccent) |
| 84 | |
| 85 | prog := progress.New( |
nothing calls this directly
no outgoing calls
no test coverage detected