├── .gitignore ├── LICENSE ├── README.md ├── bin └── vman └── plugin └── superman.vim /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .*.swp 3 | tags 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jez/vim-superman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jez/vim-superman/HEAD/README.md -------------------------------------------------------------------------------- /bin/vman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jez/vim-superman/HEAD/bin/vman -------------------------------------------------------------------------------- /plugin/superman.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jez/vim-superman/HEAD/plugin/superman.vim --------------------------------------------------------------------------------