├── .gitignore ├── LICENSE ├── README.md └── plugin └── exit-vim.vim /.gitignore: -------------------------------------------------------------------------------- 1 | facts 2 | logic 3 | reason 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cabellwg/exit-vim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cabellwg/exit-vim/HEAD/README.md -------------------------------------------------------------------------------- /plugin/exit-vim.vim: -------------------------------------------------------------------------------- 1 | silent! q! 2 | --------------------------------------------------------------------------------