├── License.md ├── README.md ├── extract-variable ├── extract-variable.vim └── sample-extract-variable.js ├── markdown-underline ├── README.md ├── code.vim └── sample.md ├── move-em ├── README.md ├── move-em.vim └── sample.md └── spelling-error ├── README.md ├── sample.md └── spelling-error.vim /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/README.md -------------------------------------------------------------------------------- /extract-variable/extract-variable.vim: -------------------------------------------------------------------------------- 1 | nnoremap sop :source % 2 | -------------------------------------------------------------------------------- /extract-variable/sample-extract-variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/extract-variable/sample-extract-variable.js -------------------------------------------------------------------------------- /markdown-underline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/markdown-underline/README.md -------------------------------------------------------------------------------- /markdown-underline/code.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/markdown-underline/code.vim -------------------------------------------------------------------------------- /markdown-underline/sample.md: -------------------------------------------------------------------------------- 1 | Main Document Title 2 | 3 | Secondary Heading 4 | 5 | Third Level 6 | -------------------------------------------------------------------------------- /move-em/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/move-em/README.md -------------------------------------------------------------------------------- /move-em/move-em.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/move-em/move-em.vim -------------------------------------------------------------------------------- /move-em/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/move-em/sample.md -------------------------------------------------------------------------------- /spelling-error/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/spelling-error/README.md -------------------------------------------------------------------------------- /spelling-error/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/spelling-error/sample.md -------------------------------------------------------------------------------- /spelling-error/spelling-error.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christoomey/your-first-vim-plugin/HEAD/spelling-error/spelling-error.vim --------------------------------------------------------------------------------