diff options
author | janus_wel | 2008-11-02 18:10:44 +0000 |
---|---|---|
committer | janus_wel | 2008-11-02 18:10:44 +0000 |
commit | 197a0c152b00b4a9544f9c7a771b662f8203e09b (patch) | |
tree | 39fc9e55807b2cc4742bfc6736ff52265f09a2ce /copy.js | |
parent | e9ed4757b5405ba2bfaf9d2546b6bda195857d86 (diff) | |
download | vimperator-plugins-197a0c152b00b4a9544f9c7a771b662f8203e09b.tar.bz2 |
fix titleAndURL's description on completion
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@22590 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'copy.js')
-rw-r--r-- | copy.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,7 +87,7 @@ commands.addUserCommand(['copy'],'Copy to clipboard', return completion.javascript(filter); } var templates = liberator.globalVariables.copy_templates.map(function(template) - [template.label, template.value] + [template.label, liberator.modules.util.escapeString(template.value, '"')] ); if (!filter){ return [0,templates]; } var candidates = []; |