diff options
author | anekos | 2009-07-02 12:09:15 +0000 |
---|---|---|
committer | anekos | 2009-07-02 12:09:15 +0000 |
commit | 2853e7ad8e7392c902b069acbf8620de5d97ccfd (patch) | |
tree | 9e288ec393197c7ad1f5da593f3507726edd5707 /auto_word_select_mode.js | |
parent | 966099c1325ac807bcb61a8e2b77eccdb75d8f39 (diff) | |
download | vimperator-plugins-2853e7ad8e7392c902b069acbf8620de5d97ccfd.tar.bz2 |
follow HEAD(2.2pre)
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@34243 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'auto_word_select_mode.js')
-rw-r--r-- | auto_word_select_mode.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/auto_word_select_mode.js b/auto_word_select_mode.js index 244cb9d..4b7ee73 100644 --- a/auto_word_select_mode.js +++ b/auto_word_select_mode.js @@ -36,12 +36,12 @@ var PLUGIN_INFO = <name>{NAME}</name> <description>Add auto word select mode.</description> <description lang="ja">単語を自動選択するモードを追加します</description> - <minVersion>2.0pre</minVersion> - <maxVersion>2.1pre</maxVersion> + <minVersion>2.2pre</minVersion> + <maxVersion>2.2pre</maxVersion> <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/auto_word_select_mode.js</updateURL> <author mail="snaka.gml@gmail.com" homepage="http://vimperator.g.hatena.ne.jp/snaka72/">snaka</author> <license>MIT style license</license> - <version>1.2.1</version> + <version>1.2.2</version> <detail><![CDATA[ == Subject == Add auto word select mode. @@ -310,7 +310,7 @@ mappings.add( let extraInfo = {}; if (hasCount) - extraInfo.flags = Mappings.flags.COUNT; + extraInfo.count = true; mappings.add([modes.AUTO_WORD_SELECT], keys, "", function (count) { |