1. Intro
Here I introduce a useful plugin that I have searched for long:
rosenfeld/conque-term
This vim plugin can run interactive commands inside a Vim buffer. For example, I need to run python console while using vim. I just need to type this command:
:ConqueTermSplit python
2. How to Use
Here is some examples:
:ConqueTerm bash
:ConqueTermSplit mysql -h localhost -u joe -p sock_collection
:ConqueTermVSplit C:\Python27\python.exe
Here is my mapping in the ~/.vimrc
" Conque Term -----------------------------
" mappings
nmap <Leader>python :ConqueTermSplit python<CR>
nmap <Leader>bash :ConqueTermSplit bash<CR>