├── .gitignore ├── INSTALL.md ├── README.md ├── TODO.md ├── addon-info.json ├── autoload └── xolox │ └── shell.vim ├── doc └── shell.txt ├── misc └── shell │ ├── make.cmd │ ├── shell-x64.dll │ ├── shell-x86.dll │ └── shell.c └── plugin └── shell.vim /.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/INSTALL.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/TODO.md -------------------------------------------------------------------------------- /addon-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/addon-info.json -------------------------------------------------------------------------------- /autoload/xolox/shell.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/autoload/xolox/shell.vim -------------------------------------------------------------------------------- /doc/shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/doc/shell.txt -------------------------------------------------------------------------------- /misc/shell/make.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/misc/shell/make.cmd -------------------------------------------------------------------------------- /misc/shell/shell-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/misc/shell/shell-x64.dll -------------------------------------------------------------------------------- /misc/shell/shell-x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/misc/shell/shell-x86.dll -------------------------------------------------------------------------------- /misc/shell/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/misc/shell/shell.c -------------------------------------------------------------------------------- /plugin/shell.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xolox/vim-shell/HEAD/plugin/shell.vim --------------------------------------------------------------------------------