diff options
author | anekos | 2010-12-03 16:40:35 +0900 |
---|---|---|
committer | anekos | 2010-12-03 16:40:35 +0900 |
commit | ab728ee81035a67ec148a4913df0288e872c4c53 (patch) | |
tree | b25266b9b4380c8e222eecf35a512f11395367db /foxage2ch.js | |
parent | f58fecd630dfd8ca666159dc60f5304b5a2738af (diff) | |
download | vimperator-plugins-ab728ee81035a67ec148a4913df0288e872c4c53.tar.bz2 |
Follow Vimp3.0
Diffstat (limited to 'foxage2ch.js')
-rw-r--r-- | foxage2ch.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/foxage2ch.js b/foxage2ch.js index 3b44912..3ee8ab9 100644 --- a/foxage2ch.js +++ b/foxage2ch.js @@ -37,7 +37,7 @@ let PLUGIN_INFO = <VimperatorPlugin> <name>FoxAge2ch</name> <description>for FoxAge2ch</description> - <version>1.0.2</version> + <version>1.0.3</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> @@ -55,7 +55,7 @@ let PLUGIN_INFO = // INFO {{{ let INFO = <> - <plugin name="FoxAge2ch" version="1.0.2" + <plugin name="FoxAge2ch" version="1.0.3" href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/foxage2ch.js" summary="for FoxAge2ch addon" lang="en-US" @@ -74,7 +74,7 @@ let INFO = </description> </item> </plugin> - <plugin name="FoxAge2ch" version="1.0.2" + <plugin name="FoxAge2ch" version="1.0.3" href="http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/foxage2ch.js" summary="FoxAge2ch アドオン用" lang="ja" @@ -165,6 +165,7 @@ let INFO = if (typeof v === 'number') ]), completer: function (context, args) { + context.compare = void 0; for (let [v, k] in Iterator(Status)) { if (typeof v === 'string' && ('-' + v in args)) args['-status'] = v; |