ervandew / screen

Simulate a split shell in vim using gnu screen or tmux
202 stars 31 forks source link

Add support for ConqueTerm (2771) #9

Open bobpaul opened 13 years ago

bobpaul commented 13 years ago

ConqueTerm is a terminal emulator written as a python vim plugin that displays in a vim buffer. It has some quirks (display doesn't always update until insert mode entered on the buffer), but is able to host ncurses apps rather well, allowing one to run even console vim inside of gvim (Esc-Esc to send Esc to the hosted vim).

For GVim users, I'd like to see screen.vim automatically call ':ConqueTermSplit screen ...args...' if it's available instead of opening a new window. For console vim users, I'd like to see this as an optional alternative to bootstrapping into a screen session (definitely bootstrap should remain default; it's superior in many ways, but some users might still want to use Conque).

ConqueTerm is script 2771 on vim.org and hosted on google code here: http://code.google.com/p/conque/

mathstuf commented 13 years ago

Conque support could be added as another g:ScreenImpl option. This would probably be preferred way I'd think.

ervandew commented 13 years ago

Conque support could be added as another g:ScreenImpl option. This would probably be preferred way I'd think.

Yeah, that's exactly what I'll do. I'll look into implementing this when I get a chance.