aboutsummaryrefslogtreecommitdiffstats
path: root/commands/account
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account')
-rw-r--r--commands/account/cf.go4
-rw-r--r--commands/account/mkdir.go2
-rw-r--r--commands/account/query.go3
-rw-r--r--commands/account/rmdir.go4
4 files changed, 7 insertions, 6 deletions
diff --git a/commands/account/cf.go b/commands/account/cf.go
index 8762f97f..199664fa 100644
--- a/commands/account/cf.go
+++ b/commands/account/cf.go
@@ -117,12 +117,12 @@ func (c ChangeFolder) Execute([]string) error {
if target == "-" {
if dir, ok := history[acct.Name()]; ok {
- acct.Directories().Open(dir, "", 0*time.Second, finalize)
+ acct.Directories().Open(dir, "", 0*time.Second, finalize, false)
} else {
return errors.New("No previous folder to return to")
}
} else {
- acct.Directories().Open(target, "", 0*time.Second, finalize)
+ acct.Directories().Open(target, "", 0*time.Second, finalize, false)
}
return nil
diff --git a/commands/account/mkdir.go b/commands/account/mkdir.go
index dae407cd..5ce7bbf4 100644
--- a/commands/account/mkdir.go
+++ b/commands/account/mkdir.go
@@ -53,7 +53,7 @@ func (m MakeDir) Execute(args []string) error {
case *types.Done:
app.PushStatus("Directory created.", 10*time.Second)
history[acct.Name()] = previous
- acct.Directories().Open(m.Folder, "", 0, nil)
+ acct.Directories().Open(m.Folder, "", 0, nil, false)
case *types.Error:
app.PushError(msg.Error.Error())
}
diff --git a/commands/account/query.go b/commands/account/query.go
index b82d0697..65b5e063 100644
--- a/commands/account/query.go
+++ b/commands/account/query.go
@@ -13,6 +13,7 @@ import (
type Query struct {
Account string `opt:"-a" complete:"CompleteAccount"`
Name string `opt:"-n"`
+ Force bool `opt:"-f"`
Query string `opt:"..." complete:"CompleteNotmuch"`
}
@@ -60,7 +61,7 @@ func (q Query) Execute([]string) error {
if name == "" {
name = q.Query
}
- acct.Directories().Open(name, q.Query, 0*time.Second, finalize)
+ acct.Directories().Open(name, q.Query, 0*time.Second, finalize, q.Force)
return nil
}
diff --git a/commands/account/rmdir.go b/commands/account/rmdir.go
index 22e78a69..b08a2a1e 100644
--- a/commands/account/rmdir.go
+++ b/commands/account/rmdir.go
@@ -89,7 +89,7 @@ func (r RemoveDir) Execute(args []string) error {
return errors.New("No directory to move to afterwards!")
}
- reopenCurrentDir := func() { acct.Directories().Open(curDir, "", 0, nil) }
+ reopenCurrentDir := func() { acct.Directories().Open(curDir, "", 0, nil, false) }
acct.Directories().Open(newDir, "", 0, func(msg types.WorkerMessage) {
switch msg.(type) {
@@ -117,7 +117,7 @@ func (r RemoveDir) Execute(args []string) error {
reopenCurrentDir()
}
})
- })
+ }, false)
return nil
}