diff options
author | trapezoid | 2008-07-17 21:58:33 +0000 |
---|---|---|
committer | trapezoid | 2008-07-17 21:58:33 +0000 |
commit | c4805d4bf4f2e9e23216abf3af4efcfe03656e9e (patch) | |
tree | c7e51c8810b0c3d16b63652436371b6edcfd718c /tombloo.js | |
parent | f069b8fcfcd1c27980f9686830930493cfc60d63 (diff) | |
download | vimperator-plugins-c4805d4bf4f2e9e23216abf3af4efcfe03656e9e.tar.bz2 |
Textに対応
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@15967 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'tombloo.js')
-rw-r--r-- | tombloo.js | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -4,7 +4,7 @@ * @description Tombloo integrate plugin * @description-ja Tombloo経由で選択領域などをpostする * @author Trapezoid - * @version 0.1 + * @version 0.1a * ==/VimperatorPlugin== * * Usage: @@ -56,13 +56,11 @@ liberator.commands.addUserCommand(['tomblooAction'],'Execute Tombloo actions', liberator.commands.addUserCommand(['tombloo'],'Post by Tombloo', function(arg){ - liberator.log(TomblooService.Tombloo.Service.extracters); - TomblooService.Tombloo.Service.share(getContext(), TomblooService.Tombloo.Service.extracters[arg],false); + TomblooService.Tombloo.Service.share(getContext(), TomblooService.Tombloo.Service.extracters[arg],true); },{ completer: function(filter){ var completionList = new Array(); var exts = TomblooService.Tombloo.Service.check(getContext()); - liberator.log(exts[0]); for(var i=0; i < exts.length; i++) if(exts[i].name.indexOf(filter) > -1) completionList.push([exts[i].name,exts[i].name]); |