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.
|
|
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. |
|||||||||||||||||
|
|
Check out Conque shell. Lets you run any interactive program inside vim, not just a shell. |
|||||||||||||||||||||
|
|
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. |
|||||
|
|
The way that I get around this is to pause Vim with |
|||||||||
|
|
|
Update: You could map
|
||||
|
|
|
No, you cannot: http://vimdoc.sourceforge.net/htmldoc/tips.html#shell-window |
|||||||||||
|
|
You might want to take a look at the :sh command (see :help sh in vim). |
|||
|
|
|
I know that I'm not directly answering the question, but I think it's a good approach. Nobody has mentioned tmux (or at least not as a standalone answer). Tmux is a terminal multiplexor like screen. Most stuff can be made in both multiplexors, but afaik tmux it's more easily to configure. Also tmux right now is being more actively developed than screen and there's quite a big ecosystem around it, like tools that help the configuration, ecc. Also for vim, there's another plugin: ViMUX, that helps a lot in the interaction between both tools. You can call commands with:
That command creates a small horizontal split below the current pane vim is in. It can also let you run from a prompt in case you don't want to run the whole command:
As it weren't enought, there are at least 6 'platform specific plugins':
Here is a nice "use case": http://henrik.nyh.se/octopress/2012/07/tests-on-demand-using-vimux-and-turbux-with-spork-and-guard/ |
||||
|
|
|
Only way I know of is by using vim-shell, a third-party patch. |
|||||
|