AshokEmrys / conque

code.google.com/p/conque
0 stars 0 forks source link

g:ConqueTerm_CWInsert doesn't recognize ^W^W sequence #43

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. set g:ConqueTerm_CWInsert = 1 in .vimrc file
2. open file
3. type ":ConqueTermSplit sh"
4. type "^W^W"

What is the expected output? What do you see instead?

I expect the cursor to return to the original file.  Instead, the second ^W is 
passed to the shell.

What version of the product are you using? On what operating system?

v2.0 on Gentoo Linux

Please provide any additional information below.

An easy way to patch this is to add the following line at line 606 of 
autoload/conque_term.vim:

    inoremap <silent> <buffer> <C-w><C-w> <Esc><C-w><C-w>

and things work as I expect them.

Original issue reported on code.google.com by jgeis...@gmail.com on 15 Feb 2011 at 3:33

GoogleCodeExporter commented 8 years ago
A fix has been checked into trunk and will go out with the next release.

Thanks.

Original comment by nicora...@gmail.com on 17 Feb 2011 at 5:24