diff options
author | trapezoid | 2008-12-26 05:04:06 +0000 |
---|---|---|
committer | trapezoid | 2008-12-26 05:04:06 +0000 |
commit | a41c1049d5e13e75912fd0406f21812bd484afb6 (patch) | |
tree | 8b04c6478684056287b7bfb0089e5d9e8131c65c /ldrize_cooperation.js | |
parent | f07e344a7c1696999bf32d7a8929b2a73de63d2a (diff) | |
download | vimperator-plugins-a41c1049d5e13e75912fd0406f21812bd484afb6.tar.bz2 |
:mbが正常に動かないbugを修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@27439 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'ldrize_cooperation.js')
-rw-r--r-- | ldrize_cooperation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldrize_cooperation.js b/ldrize_cooperation.js index 8294e11..5b67b90 100644 --- a/ldrize_cooperation.js +++ b/ldrize_cooperation.js @@ -241,7 +241,7 @@ liberator.modules.commandline.echo(showString, liberator.modules.commandline.HL_NORMAL, liberator.modules.commandline.FORCE_MULTILINE);
},{});
liberator.modules.commands.addUserCommand(["mb","m","minibuffer"], "Execute Minibuffer",
- function(arg){self.Minibuffer.execute(arg.string)},
+ function(arg){ self.Minibuffer.execute(arg.string.replace(/\\/g,"")) },
{
completer: function(context, arg, special){
var filter = context.filter;
|