如何纯粹在 Vim 中设置 Android 开发环境?
我本来打算尝试学习Android,但我对Android开发完全没有了解。
但 Vim 是我最喜欢的编辑器,所以我更喜欢 Vim 而不是 Eclipse。
我如何设置这个环境,以及如何运行它(从开始到结束)?
目前,
~/.vim/bundle/
我已经得到了
- conque-shell
- nerdtree
- supertab
- command-t
- taglist
...etc.
这些插件。我还应该添加其他插件吗?
I was planning to try to learn Android, and I have totally no knowledge on Android development.
But Vim is my favorite editor, so I prefer Vim rather than Eclipse.
How do I set up this environment, and how do I run it (from beginning to the end)?
Currently in,
~/.vim/bundle/
I already got
- conque-shell
- nerdtree
- supertab
- command-t
- taglist
...etc.
these plugin. Are there other plugins that I should add in?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我强烈建议您使用 Vim 插件 Eclim 在 Vim 中进行 Android 开发。我使用过它,我发现它非常有用。代码自动完成、重构等等,非常棒。事实上,当我开始使用 Eclim 时,我通过我最喜欢的编辑器 Vim 获得了 IDE 的强大功能。
另外,您可能想阅读 此出版物,介绍如何使用 Eclim 进行 Android 开发。
I would strongly recommend you to use Vim plugin Eclim for Android development in Vim. I used it, and I found it extremely useful. Code autocomplete, refactoring and so on, is just awesome. Actually, when I started using Eclim, I got power of an IDE with my favorite editor Vim.
Also, you might want to read this publication about using Eclim for Android development.
Android 开发不需要任何 Vim 插件。
您所需要的只是
然后您可以使用 Vim 编辑 AndroidManifest.xml、layout.xml、Java 源、build.properties、build.xml 等。
You don't need any Vim plugins for Android development.
All you need is
Then you can use Vim to edit the AndroidManifest.xml, the layout.xmls, the Java source, the build.properties, the build.xml, and so on.
您需要了解如何通过 Ant 构建 Android 项目。
我也使用Vim来开发android项目,并且我刚刚创建了一个用于Android开发的Vim脚本。它叫做 adt.vim,我正在使用它。我希望你会喜欢它。 http://www.vim.org/scripts/script.php?script_id= 4330
如果有任何建议,请告诉我。目前仍在改进中。
You need to know how to build an Android project by Ant.
I also use Vim to develop android project, and I have just created a Vim script for Android development. It is called adt.vim, and I am using it. I hope you will like it. http://www.vim.org/scripts/script.php?script_id=4330
If any suggestion, please tell me. It is still being improved.