What does ^S work?

2011-12-04 Thread IL HAN
Hi, I use VIM 7.1 OS: Linux (kernel version 2.6.34) CPU: Intel Core 2 Duo When I hold down the [CTRL] key and press the 's' key simultaneously (both in command mode or insert mode), since then, any key and any command doesn't work. And I cannot escape from that state. What does ^S work? I

Re: What does ^S work?

2011-12-04 Thread Francis (Grizzly) Smit
On 04/12/11 18:07, IL HAN wrote: Hi, I use VIM 7.1 OS: Linux (kernel version 2.6.34) CPU: Intel Core 2 Duo When I hold down the [CTRL] key and press the 's' key simultaneously (both in command mode or insert mode), since then, any key and any command doesn't work. And I cannot escape from that

Re: What does ^S work? - stop output in terminals

2011-12-04 Thread Sven Guckes
* IL HAN corone.il@gmail.com [2011-12-04 10:54]: I use VIM 7.1 OS: Linux (kernel version 2.6.34) CPU: Intel Core 2 Duo When I hold down the [CTRL] key and press the 's' key simultaneously (both in command mode or insert mode), since then, any key and any command doesn't work. And I

Re: What does ^S work?

2011-12-04 Thread Erik Christiansen
On 04.12.11 20:13, Francis (Grizzly) Smit wrote: On 04/12/11 18:07, IL HAN wrote: When I hold down the [CTRL] key and press the 's' key simultaneously (both in command mode or insert mode), since then, any key and any command doesn't work. And I cannot escape from that state. ... Can you

Re: GVim Win32 on Win7 suddenly very slow to load

2011-12-04 Thread Ben Fritz
On Dec 2, 7:52 pm, Greg Underwood greg.underw...@gmail.com wrote: Starting after I upgraded to VisDev 2010 and applied a couple of the recent patches for Win7 yesterday and today, my Vim is very slow to load when launched from my windows shortcut.  However, it's very fast if I launch from a

Re: What does ^S work?

2011-12-04 Thread Marty Fried
In the old days of using a terminal, there was a protocol to stop/start output to the terminal, so it could be read before it scrolled off into bit heaven; the protocol was called XON and XOFF. To generate and XON, you typed ^S, and to cancel, and continue the output, you typed ^Q, the XOFF

Re: What does ^S work? - stop output in terminals

2011-12-04 Thread Chris Jones
On Sun, Dec 04, 2011 at 05:02:39AM EST, Sven Guckes wrote: [..] you can disable start+stop within the terminal with the stty command: stty start '' stty stop '' stty should then show: start = undef; stop = undef; then again.. you might want to use this feature now

How to give middle mouse button emulation more time?

2011-12-04 Thread Paul Maier
Hi, vim emulates a middle mouse button press by clicking left and right mouse button simultaneously. Works fine. But often I'm too slow to click both buttons at the very same time. I'm too slow for the default emulation tolerance. I'm looking for an option how to set the emulation tolerance to

How to make _vimrc turn spell checker on for .txt files?

2011-12-04 Thread wolfv
How to make _vimrc turn spell checker on for .txt files? Here is the pseudo code: if filename ends in .txt setlocal spell on else setlocal spell off endif Thank you, wolfv -- You received this message from the vim_use maillist. Do not top-post! Type your reply below the text you are

Re: How to make _vimrc turn spell checker on for .txt files?

2011-12-04 Thread Rich Healey
Au BufRead,BufNewFile *.txt setlocal spell on Alternately, you can do it with ftdetect and ftplugin files, which is how I've taken to doing it, you can see the approach at github.com/richoH/dotfiles -- You received this message from the vim_use maillist. Do not top-post! Type your reply below

Re: How to make _vimrc turn spell checker on for .txt files?

2011-12-04 Thread wolfv
Thanks Rich. After adding the code to my vimrc file and opening Vim, a pop-up message says: E492: Not an editor command: Au BufRead,BufNewFile *.txt setlocal spell on On Dec 4, 10:29 pm, Rich Healey healey.r...@gmail.com wrote: Au BufRead,BufNewFile *.txt setlocal spell on Alternately, you

Re: How to make _vimrc turn spell checker on for .txt files?

2011-12-04 Thread Jürgen Krämer
Hi, wolfv wrote: Thanks Rich. After adding the code to my vimrc file and opening Vim, a pop-up message says: E492: Not an editor command: Au BufRead,BufNewFile *.txt setlocal spell on use a lowercase au: au BufRead,BufNewFile *.txt setlocal spell on Regards, Jürgen -- Sometimes I