diff options
author | anekos | 2011-03-25 18:16:23 +0900 |
---|---|---|
committer | anekos | 2011-03-25 18:16:23 +0900 |
commit | 30c4c6b5598cf75463f2bf60794b4df1db5efbc6 (patch) | |
tree | c4e7a3b53915b0eee900eb55a6d77b45053ff8fe | |
parent | bd7b2a6842d8527252da0048dfb094c003596cb5 (diff) | |
download | vimperator-plugins-30c4c6b5598cf75463f2bf60794b4df1db5efbc6.tar.bz2 |
節電用プラグイン
-rw-r--r-- | twittperator/setuden.tw | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/twittperator/setuden.tw b/twittperator/setuden.tw new file mode 100644 index 0000000..1a78d35 --- /dev/null +++ b/twittperator/setuden.tw @@ -0,0 +1,10 @@ + +(function () { + plugins.libly.$U.around( + plugins.twittperator.Twitter, + 'say', + function (next, [status, inReplyTo]) { + return next([status.toString().slice(0, 17), inReplyTo]); + } + ); +})(); |