Reputation: 4278
I want to execute :sh to do some quick things while in a macvim session within the terminal. When I am in the GUI application(not in terminal) this works perfectly. However, when I run it within the terminal it quits macvim, and executes the command inside the regular terminal.
How can I prevent this, and have it perform like the GUI version?
Upvotes: 0
Views: 102
Reputation: 530823
The shell is running as a child of vim
. Just exit the shell, and you should return to vim
session.
Upvotes: 2