diff options
author | anekos | 2010-04-29 14:54:59 +0000 |
---|---|---|
committer | anekos | 2010-04-29 14:54:59 +0000 |
commit | 3253c9714e51050c1aa0999e21ee6b05366c28d7 (patch) | |
tree | 4a1e82bac819bcda2756ddf2bc815eb1db4cef6e /char-hints-mod2.js | |
parent | c6b4100184e33e87324e86ec292db87c43b7e625 (diff) | |
download | vimperator-plugins-3253c9714e51050c1aa0999e21ee6b05366c28d7.tar.bz2 |
フック手法に問題があったので修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37329 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'char-hints-mod2.js')
-rw-r--r-- | char-hints-mod2.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/char-hints-mod2.js b/char-hints-mod2.js index 0b03f72..8bb373b 100644 --- a/char-hints-mod2.js +++ b/char-hints-mod2.js @@ -4,9 +4,9 @@ var PLUGIN_INFO = <name>{NAME}</name> <description>character hint mode.</description> <author mail="konbu.komuro@gmail.com" homepage="http://d.hatena.ne.jp/hogelog/">hogelog</author> - <version>0.3.1</version> + <version>0.3.2</version> <minVersion>2.3pre 2010/01/26</minVersion> - <maxVersion>2.3pre</maxVersion> + <maxVersion>2.4pre</maxVersion> <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/char-hints-mod2.js</updateURL> <detail><![CDATA[ == Usage == @@ -262,10 +262,10 @@ let g:hintlabeling: if(!charhints.original) { charhints.original = { - show: Hints.prototype.show, - onInput: Hints.prototype._onInput, - onEvent: Hints.prototype.onEvent, - processHints: Hints.prototype._processHints, + show: hints.show, + onInput: hints._onInput, + onEvent: hints.onEvent, + processHints: hints._processHints, }; charhints.install = function () //{{{ |