summaryrefslogtreecommitdiff
path: root/interact.go
diff options
context:
space:
mode:
Diffstat (limited to 'interact.go')
-rw-r--r--interact.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/interact.go b/interact.go
index 3f3339b..4b54315 100644
--- a/interact.go
+++ b/interact.go
@@ -45,7 +45,8 @@ func interact() {
//c.Print("\033[H\033[2J")
//c.Println(boldGreen("Start New Project"))
newProject()
- showLastProject()
+ //showLastProject()
+ stdOut()
c.Println(promptcol("______________________"))
},
})
@@ -99,7 +100,8 @@ func interact() {
LongHelp: ` Usage: status
Shows the current Project, its last Tasks and if there is a open Task.`,
Func: func(c *ishell.Context) {
- stdOut()
+ //stdOut()
+ showStatus(true)
c.Println(promptcol("______________________"))
},
})
@@ -330,7 +332,7 @@ func interact() {
argi, err := strconv.Atoi(arg)
if err == nil {
editCustomer(argi)
- allCustomers()
+ allCustomers(false)
//stdOut()
} else {
c.Println(boldRed(arg, "is not a valid id!"))
@@ -418,7 +420,7 @@ func interact() {
LongHelp: ` Usage: allcustomers
Show all Customers.`,
Func: func(c *ishell.Context) {
- allCustomers()
+ allCustomers(false)
c.Println(promptcol("______________________"))
},
})