aboutsummaryrefslogtreecommitdiffstats
path: root/gmail-commando.js
diff options
context:
space:
mode:
authoranekos2010-05-31 04:49:55 +0000
committeranekos2010-05-31 04:49:55 +0000
commitb70d632ef7abec6322109eba113c579643215530 (patch)
treec33a25249dffa71d0f8ceb81a842199b5228a840 /gmail-commando.js
parent54353329146e86e7dca170dc8bd2fd3a1ab5b1da (diff)
downloadvimperator-plugins-b70d632ef7abec6322109eba113c579643215530.tar.bz2
そうと
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37766 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'gmail-commando.js')
-rwxr-xr-xgmail-commando.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/gmail-commando.js b/gmail-commando.js
index 14f15f7..8bab663 100755
--- a/gmail-commando.js
+++ b/gmail-commando.js
@@ -39,7 +39,7 @@ let PLUGIN_INFO =
<name lang="ja">GMail コマンドー</name>
<description>The handy commands for GMail</description>
<description lang="ja">便利なGMail用コマンドー</description>
- <version>1.3.4</version>
+ <version>1.3.5</version>
<author mail="anekos@snca.net" homepage="http://d.hatena.ne.jp/nokturnalmortum/">anekos</author>
<license>new BSD License (Please read the source code comments of this plugin)</license>
<license lang="ja">修正BSDライセンス (ソースコードのコメントを参照してください)</license>
@@ -57,7 +57,7 @@ let PLUGIN_INFO =
// INFO {{{
let INFO =
<>
- <plugin name="GMailCommando" version="1.3.4"
+ <plugin name="GMailCommando" version="1.3.5"
href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/gmail-commando.js"
summary="The handy commands for GMail"
lang="en-US"
@@ -72,7 +72,7 @@ let INFO =
<description><p></p></description>
</item>
</plugin>
- <plugin name="GMailコマンドー" version="1.3.4"
+ <plugin name="GMailコマンドー" version="1.3.5"
href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/gmail-commando.js"
summary="便利なGMail用コマンドー"
lang="ja"
@@ -250,7 +250,7 @@ let INFO =
// sort はなんで破壊的なの!?
- const GMailSearchKeyword = 'label subject from to cc bcc has is in lang filename before after'.split(/\s/);
+ const GMailSearchKeyword = 'label subject from to cc bcc has is in lang filename before after'.split(/\s/).sort();
const KeywordValueCompleter = {
@@ -272,14 +272,14 @@ let INFO =
},
is: function (context) {
- const values = 'anywhere inbox drafts span trash read unread'.split(/\s/);
+ const values = 'anywhere inbox drafts span trash read unread'.split(/\s/).sort();
context.completions = [
[v, v] for ([, v] in Iterator(values))
];
},
in: function (context) {
- const values = 'starred chat voicemail muted sent'.split(/\s/);
+ const values = 'starred chat voicemail muted sent'.split(/\s/).sort();
context.completions = [
[v, v] for ([, v] in Iterator(values))
];