Ubuntu – Access to the terminal while you are on Vim

backgroundprocessvim

Is there a way to access the terminal while using Vim?

I do not like to open another terminal or save and exit the current terminal.

Best Answer

You can send vim the SIGTSTP signal. You do this by pressing ctrl+z. Vim will get suspended in the background, and you can use the terminal. Type fg in the terminal to resume with vim.

Bonus tip: This works on nearly all terminal applications. Use bg to enable the application to continue running in the background.

Related Question