diff options
-rw-r--r-- | mixiecho.js | 4 | ||||
-rw-r--r-- | nicovideo_comment.js | 1 | ||||
-rw-r--r-- | reading.js | 2 | ||||
-rw-r--r-- | tombloo.js | 1 | ||||
-rw-r--r-- | twitter.js | 4 | ||||
-rw-r--r-- | wassr.js | 1 |
6 files changed, 10 insertions, 3 deletions
diff --git a/mixiecho.js b/mixiecho.js index 0ad259c..2fed274 100644 --- a/mixiecho.js +++ b/mixiecho.js @@ -116,6 +116,8 @@ showFollowersStatus()
else
sayEcho(arg);
- },
+ },{
+ bang: true
+ }
{ });
})();
diff --git a/nicovideo_comment.js b/nicovideo_comment.js index cee2169..4157649 100644 --- a/nicovideo_comment.js +++ b/nicovideo_comment.js @@ -20,6 +20,7 @@ liberator.commands.addUserCommand(['nico'],'Fill comment form in nicovideo', var form = special ? 'MailInput.text' : 'ChatInput.text' ; flvp.wrappedJSObject.SetVariable(form, arg.toString() ); },{ + bang: true, completer: function(filter, special){ var templates = []; var commands = [ @@ -131,7 +131,7 @@ liberator.commands.addUserCommand(['reading'], "update Twitter's status to curre }
},
// complete logic is none.
- {}
+ { bang: true }
);
// stuff functions
@@ -59,6 +59,7 @@ liberator.commands.addUserCommand(['tombloo'],'Post by Tombloo', function(arg,special){ TomblooService.Tombloo.Service.share(getContext(), TomblooService.Tombloo.Service.extractors[arg],special); },{ + bang: true, completer: function(filter){ var completionList = new Array(); var exts = TomblooService.Tombloo.Service.check(getContext()); @@ -171,7 +171,9 @@ showFollowersStatus(username, password, arg)
else
sayTwitter(username, password, arg);
- },
+ },{
+ bang: true
+ }
{ });
})();
// vim:sw=4 ts=4 et:
@@ -302,6 +302,7 @@ [['-todo'], commands.OPTION_STRING],
[['-footmark'], null]
],
+ bang: true,
completer: function(filter) {
candidates = [];
if (filter.match(/{emoji:$/)) {
|