Stanislaw Bobritsky
Stanislaw Bobritsky

Reputation: 165

win cmd.exe in Vim tab

I'm looking for Vim/gVim plugin to use Windows shell (cmd.exe) (executing commands, retrieving output) in separate tab/frame.

There are a lots of such solutions for Linux, but I'm unable to do it in Win...

Upvotes: 0

Views: 688

Answers (1)

Rook
Rook

Reputation: 62558

Unlike Emacs, Vim is an editor, not an environment (thank Gawd :) and it is not (nor will ever be, according to what the developers have been saying for the past 20 years) designed to house a command prompt/shell in one of its buffers.

That being said, there are a couple of plugins that try to imitate that functionality. Some work better, some worse ... check'em out, and see what works best for you:

cmd.vim
Shell.vim
Conque

Just to add, I don't use any of the above - just found them on vim.org, so you're on your own from here on.

Upvotes: 1

Related Questions