diff options
Diffstat (limited to 'hatenabookmark_show.js')
-rw-r--r-- | hatenabookmark_show.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hatenabookmark_show.js b/hatenabookmark_show.js index 5c943be..43b9856 100644 --- a/hatenabookmark_show.js +++ b/hatenabookmark_show.js @@ -29,7 +29,7 @@ liberator.modules.commandline.echo(showString,liberator.modules.commandline.HL_NORMAL,liberator.modules.commandline.FORCE_MULTILINE);
}
liberator.modules.commands.addUserCommand(["hbinfo"],"show Hatena Bookmark comments",
- function(arg,special){
+ function(arg){
var clipboard = readFromClipboard();
var url = arg.string;
if(special)
@@ -38,7 +38,8 @@ },{
completer: liberator.modules.completion.url,
bang: true
- }
+ },
+ true
);
liberator.modules.mappings.addUserMap([liberator.modules.modes.VISUAL],[",h"],"show Hatena Bookmark comments",
function(count){
|