I am used to emacs but I am trying out vim to see which one I like better. One thing that I like about emacs is the ability to run a terminal inside emacs. Is this possible inside of vim? I know that you can execute commands from vim, but I would like to be able to run a terminal inside of a tab.
|
feedback
|
|
I would definitely recommend I would use Ctrl+AS to split the current window horizontally. Then use Ctrl+ATab (or equivalently, Ctrl+ACtrl+I which may be easier to type) to switch between the windows. There are other commands to change the size and arrangement of the windows. Or a less advanced use of The GNU Screen Survival Guide question has a number of good tips if you're unfamiliar with its use. | |||||||||||||||||
feedback
|
|
Check out Conque shell. Lets you run any interactive program inside vim, not just a shell. | |||||||||||||||
feedback
|
|
I'm not sure exactly what you're trying to achieve (I've never used emacs), but you can run commands in vim by typing:
and if you want to type in several commands, or play around in a shell for a while, you can always use
once the command or shell terminates, you'll be given the option to press [ENTER] to return to your editor window vim is intentionally lightweight and lacking in the ability to do non-editorish type things, just as running a full-blown shell inside a vim pane/tab, but as mentioned above there are 3rd party addons such as vim-shell that allow you to do that sort of thing typically if I want to switch between vim and my shell (bash), I just hit CTRL+Z to pause the vim process, play around in my shell, then type 'fg' when I want to go back to vim - keeping my editor and my shell nice and separate. | |||
feedback
|
|
The way that I get around this is to pause Vim with | |||
|
feedback
|
|
No, you cannot: http://vimdoc.sourceforge.net/htmldoc/tips.html#shell-window | |||||||||
feedback
|
|
You might want to take a look at the :sh command (see :help sh in vim). | |||
|
feedback
|
|
Only way I know of is by using vim-shell, a third-party patch. | |||||
feedback
|