Skip to content
New issue

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

Ctrl_W+Arrow doesn't work with g:ConqueTerm_CWInsert=1 #44

Closed
GoogleCodeExporter opened this issue Feb 25, 2016 · 3 comments
Closed

Ctrl_W+Arrow doesn't work with g:ConqueTerm_CWInsert=1 #44

GoogleCodeExporter opened this issue Feb 25, 2016 · 3 comments

Comments

@GoogleCodeExporter
Copy link

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

@GoogleCodeExporter
Copy link
Author

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

@GoogleCodeExporter
Copy link
Author

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

  • Changed state: Fixed

@GoogleCodeExporter
Copy link
Author

Thank you very much! I'm already following trunk

Original comment by rr.ro...@gmail.com on 17 Feb 2011 at 5:32

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant