diff options
author | anekos | 2010-07-30 14:41:04 +0000 |
---|---|---|
committer | anekos | 2010-07-30 14:41:04 +0000 |
commit | adbcae0f527ea1edeea801d6981f77ab55642390 (patch) | |
tree | 24304e0683f8c7160c6681c9bef4a6400ab4bb51 /twittperator.js | |
parent | 8da8ef7d260f73fc9017019e36a0f8bc35323e2e (diff) | |
download | vimperator-plugins-adbcae0f527ea1edeea801d6981f77ab55642390.tar.bz2 |
デバッグ用のゴミを殺害
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38061 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'twittperator.js')
-rwxr-xr-x | twittperator.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/twittperator.js b/twittperator.js index 91e2947..855f91e 100755 --- a/twittperator.js +++ b/twittperator.js @@ -1136,7 +1136,6 @@ let ChirpUserStream = (function () { if (len <= 0) return; let data = sis.read(len); - liberator.log(data); let lines = data.split(/\n/); if (lines.length > 2) { lines[0] = buf + lines[0]; @@ -1178,7 +1177,6 @@ let ChirpUserStream = (function () { let talk = msg.user.screen_name + ': ' + msg.text; liberator.echo(talk, commandline.FORCE_SINGLELINE); - liberator.log(talk); history.unshift(msg); if (history.length > 1000) @@ -1432,19 +1430,16 @@ function setup() { // {{{ }; if (args.bang && !/^[-+]/.test(args[0])){ - liberator.log(1); targetContext.title = ["Name","Entry"]; list = history.map(function(s) ("retweeted_status" in s) ? ["@" + s.retweeted_status.user.screen_name, s] : ["@" + s.user.screen_name, s]); } else if (/(?:^|\b)RT\s+@[A-Za-z0-9_]{1,15}$/.test(args[0])){ - liberator.log(2); targetContext.title = ["Name + Text"]; list = history.map(function(s) ("retweeted_status" in s) ? ["@"+s.retweeted_status.user.screen_name+"#"+s.retweeted_status.id+": "+s.retweeted_status.text, s] : ["@"+s.user.screen_name+"#"+s.id+": "+s.text, s]); } else { - liberator.log(3); targetContext.title = ["Name#ID","Entry"]; list = history.map(function(s) ("retweeted_status" in s) ? ["@"+s.retweeted_status.user.screen_name+"#"+s.retweeted_status.id+" ", s] : |