On 3/11/09, Ben Schmidt wrote: > > > recover use of some terminal keys for vim > > > > The terminal apps I use: > > MacOS 10.4.11 -- Terminal.app > > Linux -- rxvt > > intercept some control keys, such as: > > I never had any problems except with ^Q and ^S and fixed it by just doing > > stty -ixon > vim > stty ixon
Yeah, this is the only one that needs to be done. I personally just throw "stty -ixon" into my shell rc file, because I find flow control useless all the time. > ^C, ^Z and ^\ all send signals, but Vim catches them and handles them > properly anyway in my experience. They send signals in "cooked" mode, but since Vim puts the terminal into "raw" mode, it just reads them as regular-old characters. Flow control isn't disabled in raw mode, but all the other mentioned things are. ~Matt --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
