aboutsummaryrefslogtreecommitdiffstats
path: root/copy.js
diff options
context:
space:
mode:
authorpekepeke2008-11-26 15:02:44 +0000
committerpekepeke2008-11-26 15:02:44 +0000
commitd6b875f602e3646109f54fd3461b516b1585afea (patch)
treea0d55c0ec45e88dc72088bbc9e7f899a9d247479 /copy.js
parent1fe141a3390e785d5de12537aad18d5df81a342a (diff)
downloadvimperator-plugins-d6b875f602e3646109f54fd3461b516b1585afea.tar.bz2
2.0pre対応
refcontrol, autoproxychanger 追加 git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@24976 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'copy.js')
-rw-r--r--copy.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/copy.js b/copy.js
index d58aafe..48a8942 100644
--- a/copy.js
+++ b/copy.js
@@ -91,9 +91,9 @@ commands.addUserCommand(['copy'],'Copy to clipboard',
var templates = liberator.globalVariables.copy_templates.map(function(template)
[template.label, liberator.modules.util.escapeString(template.value, '"')]
);
- if (!context.filter){ context.items = templates; return; }
+ if (!context.filter){ context.completions = templates; return; }
var candidates = [];
- context.items = completion.filter(templates, context.filter, true);
+ context.completions = completion.filter(templates, context.filter, true);
},
bang: true
}