aboutsummaryrefslogtreecommitdiffstats
path: root/migemo_hint.js
diff options
context:
space:
mode:
authorjanus_wel2008-10-29 09:35:00 +0000
committerjanus_wel2008-10-29 09:35:00 +0000
commitfeed431d0c36ae16b463dc924502b3e233500dd8 (patch)
tree33eb7141050efd0591af56945d9516cd51ca1bd7 /migemo_hint.js
parent3ff7c9060c08feadf03c8f608696e946c57d5c46 (diff)
downloadvimperator-plugins-feed431d0c36ae16b463dc924502b3e233500dd8.tar.bz2
remove temporary code
- global object 'plugins' is harmful, so update this plugin plz git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@22319 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'migemo_hint.js')
-rw-r--r--migemo_hint.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/migemo_hint.js b/migemo_hint.js
index ac3651b..54326de 100644
--- a/migemo_hint.js
+++ b/migemo_hint.js
@@ -1,5 +1,5 @@
// Vimperator plugin: 'Hint Matching with XUL/Migemo'
-// Last Change: 21-Oct-2008. Jan 2008
+// Last Change: 29-Oct-2008. Jan 2008
// License: Creative Commons
// Maintainer: Trapezoid <trapezoid.g@gmail.com> - http://unsigned.g.hatena.ne.jp/Trapezoid
// Require: XUL/Migemo extension - https://addons.mozilla.org/ja/firefox/addon/5239
@@ -19,6 +19,3 @@ liberator.plugins.customHintMatcher = function(inputString){
var r = new RegExp(XMigemoCore.getRegExp(inputString));
return function(hintString) r.test(hintString);
}
-
-plugins = {};
-plugins.customHintMatcher = liberator.plugins.customHintMatcher;