Troskyvs
Troskyvs

Reputation: 8047

How to close "Conque GDB" window inside VIM?

I've just install vim plugin named "Conque gdb", it's good: but after I type "q" in gdb, the "Conque gdb" window is still there, hang.

How can I, say, type "q" inside gdb so that Conque gdb window is automatically closed inside vim?

Upvotes: 1

Views: 603

Answers (1)

Druesukker
Druesukker

Reputation: 56

In your vimrc you need:

let g:ConqueTerm_CloseOnEnd = 1

Personally, I use the following settings:

let g:ConqueTerm_StartMessages = 0
let g:ConqueTerm_Color = 0
let g:ConqueTerm_CloseOnEnd = 1
let g:ConqueTerm_Interrupt = '<C-g><C-c>'
let g:ConqueTerm_ReadUnfocused = 1

Upvotes: 4

Related Questions