Your web-browser is very outdated, and as such, this website may not display properly. Please consider upgrading to a modern, faster and more secure browser. Click here to do so.
mattn/webapi-vim - GitHub元々は experimental なプロジェクトだったのですが、色んなプロジェクトで使われる様になりました。 先日 gist-vim を更新してリリースしたのですが、gist-vim から使っている webapi-vim も vim.org に登録すべきたと言われました。Vim Interface to Web API
http://bit.ly/HbVoOI
As gist.vim now requires webapi.vim, a stable version of webapi.vim should be published to vim.org. Not everyone is using a Vim package manager, and not everyone (including me) is keen on consuming potentially unstable latest bits from GitHub. By publishing stable releases on vim.org (and referencing those as a gist.vim dependency, including the version number needed), you allow people to consume gist.vim and its dependencies solely from vim.org.ここのコメントにも書いた通りなのですが、webapi-vim は experimental という事もあって、ルーとネームスペースを持っていません。「http#get」というとても generic なネームスペースになっています。他に
PS: I also would suggest putting all webapi autoload scripts into a webapi subdirectory, as the module names are quite generic (“json”, “html”), so there’s a high likelihood of clashes with other plugins. (Or even separate versions of them; you seem to have copied some scripts from other authors.)
http://bit.ly/H9qBn3
autoload/http.vim というファイルが一つでもあるとバッティングしてしまいます。webapi というネームスペースを設けようと思います。http#get() であれば webapi#http#get() になります。各プラグイン製作者の皆さんにはこの変更を行って頂かなければならなくなります。