diff options
author | teramako | 2008-10-06 14:03:52 +0000 |
---|---|---|
committer | teramako | 2008-10-06 14:03:52 +0000 |
commit | 58cbcc2e27605e20c72e5c397aff6ba796e97ba6 (patch) | |
tree | 4ea143a2ed05f1cd610341761ccd61aa7ac7924c | |
parent | 32e5d18b3d0c01036e45ab22bbab1ef0ac7ef216 (diff) | |
download | vimperator-plugins-58cbcc2e27605e20c72e5c397aff6ba796e97ba6.tar.bz2 |
vimp CVS Headに追従(bang[!])の仕様変更に対して)
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@20857 d0d07461-0603-4401-acd4-de1884942a52
-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:$/)) {
|