├── .gitignore ├── .travis.yml ├── README.md ├── UNLICENSE ├── _config.yml ├── autoload └── vue.vim ├── ftdetect └── vue.vim ├── ftplugin ├── vue.vim └── vue │ └── fold.vim ├── indent └── vue.vim ├── lib └── indent │ ├── css.vim │ ├── typescript.vim │ └── xml.vim └── syntax ├── patch ├── coffee.vim ├── css.vim ├── html.vim ├── javascript.vim ├── less.vim ├── mustache.vim ├── pug.vim ├── sass.vim ├── scss.vim ├── stylus.vim ├── typescript.vim └── vue-keyword.vim └── vue.vim /.gitignore: -------------------------------------------------------------------------------- 1 | README.html 2 | test.vue 3 | .DS_STORE 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/UNLICENSE -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/_config.yml -------------------------------------------------------------------------------- /autoload/vue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/autoload/vue.vim -------------------------------------------------------------------------------- /ftdetect/vue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/ftdetect/vue.vim -------------------------------------------------------------------------------- /ftplugin/vue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/ftplugin/vue.vim -------------------------------------------------------------------------------- /ftplugin/vue/fold.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/ftplugin/vue/fold.vim -------------------------------------------------------------------------------- /indent/vue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/indent/vue.vim -------------------------------------------------------------------------------- /lib/indent/css.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/lib/indent/css.vim -------------------------------------------------------------------------------- /lib/indent/typescript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/lib/indent/typescript.vim -------------------------------------------------------------------------------- /lib/indent/xml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/lib/indent/xml.vim -------------------------------------------------------------------------------- /syntax/patch/coffee.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/coffee.vim -------------------------------------------------------------------------------- /syntax/patch/css.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/css.vim -------------------------------------------------------------------------------- /syntax/patch/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/html.vim -------------------------------------------------------------------------------- /syntax/patch/javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/javascript.vim -------------------------------------------------------------------------------- /syntax/patch/less.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/less.vim -------------------------------------------------------------------------------- /syntax/patch/mustache.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/mustache.vim -------------------------------------------------------------------------------- /syntax/patch/pug.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/pug.vim -------------------------------------------------------------------------------- /syntax/patch/sass.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/sass.vim -------------------------------------------------------------------------------- /syntax/patch/scss.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/scss.vim -------------------------------------------------------------------------------- /syntax/patch/stylus.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/stylus.vim -------------------------------------------------------------------------------- /syntax/patch/typescript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/typescript.vim -------------------------------------------------------------------------------- /syntax/patch/vue-keyword.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/patch/vue-keyword.vim -------------------------------------------------------------------------------- /syntax/vue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leafOfTree/vim-vue-plugin/HEAD/syntax/vue.vim --------------------------------------------------------------------------------