On Fri, 12 May 2006, Felipe Rafael Prenholato wrote:
Felipe Prenholato wrote:
Hi, I find solution on google, talk with people on
#vim at freenode and don't find solution for this.
I see http://www.vim.org/tips/tip.php?tip_id=1221
(Alternative tab navigation) in vim.org tips to use
tabs correctly.
This works fine in Gvim, but in terminal have
problems, part solved.
<C-S-tab> don't work on terminal, but, If I press C-v
C-S-Tab, the character that it returns work, btw,
<C-tab> don't work.
If I press C-v C-tab, in some terms returns a tab, in
others ^I.
I need to make work <C-tab> in terminal because I use
vim in remote servers. Google don't help me :(.
[snip]
somebody know something this problem or know some person that have this
problem?
I couldn't find any way to make <C-Tab> work for terminal Vim. The
terminal just doesn't recognize the Ctrl-Tab keycode. When you typed
<C-S-Tab>, the keycode you probably saw was <S-Tab>.
In Insert mode, you can check to see if
<C-v><C-S-Tab> == <C-v><S-Tab>
and also
<C-v><C-Tab> == <C-v><Tab>
Chances are both hold true. If so, this proves that Ctrl is not
recognized.
HTH.
--
Gerald