On 16/12/08 06:56, [email protected] [IMAP] wrote: [...] > Excuse me! > Pressing Ctrl-V followed by Ctrl-Left results in four chars ^[[D > - the first two ^[ are blue and the last two [D are white. > But I have no idea what they mean. [...]
^[ in blue means Ctrl-[, i.e., the Esc character. The whole result means that when you hit Ctrl-Left, the sequence of interfaces between the keyboard hardware and your Console Vim sends the three bytes Esc [ D (or 0x1B 0x5B 0x44) to represent that keypress. Best regards, Tony. -- It's raisins that make Post Raisin Bran so raisiny ... --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
