├── .gitignore ├── LICENSE.txt ├── README.md ├── autoload └── jspretmpl.vim ├── plugin └── jspretmpl.vim └── screencast01.gif /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quramy/vim-js-pretty-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quramy/vim-js-pretty-template/HEAD/README.md -------------------------------------------------------------------------------- /autoload/jspretmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quramy/vim-js-pretty-template/HEAD/autoload/jspretmpl.vim -------------------------------------------------------------------------------- /plugin/jspretmpl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quramy/vim-js-pretty-template/HEAD/plugin/jspretmpl.vim -------------------------------------------------------------------------------- /screencast01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quramy/vim-js-pretty-template/HEAD/screencast01.gif --------------------------------------------------------------------------------