Eduardo Sousa wrote: > > When I'm using a portuguese keyboard layout, and I press |<C-]>|, vim > identifies it as |<C-\>|, which makes me unable to navigate help files > using this kind of keyboards > > Hello:
First, I have no idea what a portuguese keyboard layout is like. I doubt that vim is modifying what <c-]> is producing on its own; rather, I suspect that your keyboard generates a <c-\> instead on its own. However, you could make a nmap to do what you want: nmap <c-\> :echo "it works!"<cr> If pressing <c-]> gives you the "it works" message, then: nno <c-\> <c-]> ought to work. Regards, Chip Campbell -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
