diff --git a/project.go b/project.go index 6b9366a..41ac112 100644 --- a/project.go +++ b/project.go @@ -126,6 +126,12 @@ func getParts(text string) []string { func (project Project) String() string { text := fmt.Sprintf("%s ", project.Name) text += fmt.Sprintf("^%s ", project.Directory) + if project.Repo != "" { + text += fmt.Sprintf("~%s ", project.Repo) + } + if project.Notes != "" { + text += fmt.Sprintf("#%s ", project.Notes) + } if len(project.Contexts) > 0 { sort.Strings(project.Contexts) for _, context := range project.Contexts {