aboutsummaryrefslogtreecommitdiffstats
path: root/gmail-commando.js
diff options
context:
space:
mode:
Diffstat (limited to 'gmail-commando.js')
-rwxr-xr-xgmail-commando.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/gmail-commando.js b/gmail-commando.js
index 8bab663..d8348b8 100755
--- a/gmail-commando.js
+++ b/gmail-commando.js
@@ -272,14 +272,14 @@ let INFO =
},
is: function (context) {
- const values = 'anywhere inbox drafts span trash read unread'.split(/\s/).sort();
+ const values = 'read unread starred chat voicemail muted sent'.split(/\s/).sort();
context.completions = [
[v, v] for ([, v] in Iterator(values))
];
},
in: function (context) {
- const values = 'starred chat voicemail muted sent'.split(/\s/).sort();
+ const values = 'anywhere inbox drafts spam trash'.split(/\s/).sort();
context.completions = [
[v, v] for ([, v] in Iterator(values))
];