aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--copy.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/copy.js b/copy.js
index f48ca44..f3d52dc 100644
--- a/copy.js
+++ b/copy.js
@@ -1,7 +1,7 @@
/**
* vimperator plugin
* Add `copy' command
- * For vimperator 0.6pre
+ * For vimperator 0.5.3
* @author teramako teramako@gmail.com
* @version 0.1
*
@@ -47,7 +47,7 @@ liberator.commands.addUserCommand(['copy'],'Copy to clipboard',
var isError = false;
if (special && arg){
try {
- copyString = window.eval('with(vimperator){' + arg + '}');
+ copyString = window.eval('with(liberator){' + arg + '}');
switch (typeof copyString){
case 'object':
copyString = copyString === null ? 'null' : copyString.toSource();