Changeset 24581 for lang/javascript

Show
Ignore:
Timestamp:
11/22/08 00:43:50 (4 years ago)
Author:
anekos
Message:

仕様変更に対応。
({completer: completion.file} のような手抜きが出来なくなった?)

Location:
lang/javascript/vimperator-plugins/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/vimperator-plugins/trunk/auto_source.js

    r23763 r24581  
    7474      completer: function (arg, bang) { 
    7575        return bang ? [0, [[filepath, ''] for (filepath in files)]] 
    76                     : completion.file.apply(this, arguments); 
     76                    : completion.file(arg); 
    7777      } 
    7878    }, 
  • lang/javascript/vimperator-plugins/trunk/fetchyoutube.js

    r24195 r24581  
    55// @version        1.0 
    66// @author         anekos (anekos@snca.net) 
    7 // @minVersion     2.0pre 
     7// @minVersion     1.2 
    88// @maxVersion     2.0pre 
    99// ==/VimperatorPlugin== 
     
    7373      'fecth YouTube HD video', 
    7474      fetch, 
    75       {argCount: '*', completer: completion.file}, 
     75      {argCount: '*', completer: function (arg) completion.file(arg)}, 
    7676      true 
    7777    );