By using vimux we can use vim as an IDE. It basically opens a terminal below vim panel with 20 width and then run the mapped command. Pre-requisites are vim and tmux installed.
Installation :
Make sure vim plugin manager will be installed. I installed pathgen. Now run the below command :
Configuration :
The function used to configure vimux are VimuxRunCommand, VimuxPromptCommand, VimuxRunLastCommand.
Installation :
Make sure vim plugin manager will be installed. I installed pathgen. Now run the below command :
cd ~/.vim/bundle
git clone https://github.com/benmills/vimux.git
Configuration :
The function used to configure vimux are VimuxRunCommand, VimuxPromptCommand, VimuxRunLastCommand.
- VimuxRunCommand : used to run certain system command. It is mapped with autocmd FileType which map different commands for different filetypes. Press LEADER + e
- VimuxPromptCommand : used to open a prompt to run user supplied command. Press LEADER + p
- VimuxRunLastCommand : used to run last command Executed by VimuxRunLastCommand. Press LEADER + l
Note : LEADER key is mapped to / (slach), by default it is mapped to \ (backword-slash).
