We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While <c-w>k will work correctly, <c-w>Up key won't.
Original issue reported on code.google.com by rr.ro...@gmail.com on 16 Feb 2011 at 12:36
rr.ro...@gmail.com
The text was updated successfully, but these errors were encountered:
A fix has been checked into trunk and will go out with the next release. Thanks. Index: autoload/conque_term.vim =================================================================== --- autoload/conque_term.vim (revision 444) +++ autoload/conque_term.vim (working copy) @@ -611,6 +611,11 @@ inoremap <silent> <buffer> <C-w>k <Esc><C-w>k inoremap <silent> <buffer> <C-w>h <Esc><C-w>h inoremap <silent> <buffer> <C-w>l <Esc><C-w>l + inoremap <silent> <buffer> <C-w><Up> <Esc><C-w><Up> + inoremap <silent> <buffer> <C-w><Down> <Esc><C-w><Down> + inoremap <silent> <buffer> <C-w><Left> <Esc><C-w><Left> + inoremap <silent> <buffer> <C-w><Right> <Esc><C-w><Right> + inoremap <silent> <buffer> <C-w><C-w> <Esc><C-w><C-w> inoremap <silent> <buffer> <C-w>w <Esc><C-w>w endif " }}}
Original comment by nicora...@gmail.com on 17 Feb 2011 at 5:24
nicora...@gmail.com
Sorry, something went wrong.
Original comment by nicora...@gmail.com on 17 Feb 2011 at 5:25
Thank you very much! I'm already following trunk
Original comment by rr.ro...@gmail.com on 17 Feb 2011 at 5:32
No branches or pull requests
Original issue reported on code.google.com by
rr.ro...@gmail.com
on 16 Feb 2011 at 12:36The text was updated successfully, but these errors were encountered: