├── .gitignore ├── Javacomplete2.makefile ├── Makefile ├── README.md ├── Snipmate.makefile ├── adbLogCat ├── Makefile ├── doc │ └── adblogcat.txt └── plugin │ └── adblogcat.vim ├── android-install.sh └── findAndroidManifest ├── Makefile ├── after └── ftplugin │ └── java.vim ├── doc └── java.txt └── findmanifest.vmb /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /Javacomplete2.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/Javacomplete2.makefile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/README.md -------------------------------------------------------------------------------- /Snipmate.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/Snipmate.makefile -------------------------------------------------------------------------------- /adbLogCat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/adbLogCat/Makefile -------------------------------------------------------------------------------- /adbLogCat/doc/adblogcat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/adbLogCat/doc/adblogcat.txt -------------------------------------------------------------------------------- /adbLogCat/plugin/adblogcat.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/adbLogCat/plugin/adblogcat.vim -------------------------------------------------------------------------------- /android-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/android-install.sh -------------------------------------------------------------------------------- /findAndroidManifest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/findAndroidManifest/Makefile -------------------------------------------------------------------------------- /findAndroidManifest/after/ftplugin/java.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/findAndroidManifest/after/ftplugin/java.vim -------------------------------------------------------------------------------- /findAndroidManifest/doc/java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/findAndroidManifest/doc/java.txt -------------------------------------------------------------------------------- /findAndroidManifest/findmanifest.vmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpowell/vim-android/HEAD/findAndroidManifest/findmanifest.vmb --------------------------------------------------------------------------------