diff options
author | anekos | 2010-03-19 07:45:03 +0000 |
---|---|---|
committer | anekos | 2010-03-19 07:45:03 +0000 |
commit | 4105dba3df84af3ab06bab6f1733e1e9c705c76d (patch) | |
tree | 8b33a1688228f6f5a527589aa012e7a94926846a | |
parent | d29ed30fedbe388dbff6e1301e83d01be5724141 (diff) | |
download | vimperator-plugins-4105dba3df84af3ab06bab6f1733e1e9c705c76d.tar.bz2 |
URL編集してもげれるように補完追加
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37055 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r-- | bitly.js | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -44,7 +44,7 @@ let PLUGIN_INFO = <license lang="ja">修正BSDライセンス (ソースコードのコメントを参照してください)</license> <updateURL>http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk/bitly.js</updateURL> <minVersion>2.0pre</minVersion> - <maxVersion>2.0pre</maxVersion> + <maxVersion>2.3</maxVersion> <detail><![CDATA[ == Commands == :bitly [<URL>] @@ -81,7 +81,12 @@ let PLUGIN_INFO = }); }, { - literal: 0 + literal: 0, + completer: function (context) { + context.completions = [ + [buffer.URL, 'Current URL'] + ]; + } }, true ); |