Parenthesis Matching

2006-05-27 Thread Marco Kunze
Hi everyone, since vim7 my vim changed it behaviour marking matching brackets: Before, the cursor was jumping to the matching bracket for a second or so and that's it. Now the matching bracket is marked light blue all the time (I changed settings to background=dark), and in fact now I start

Re: Parenthesis Matching

2006-05-27 Thread Chris Allen
On 5/27/06, Marco Kunze [EMAIL PROTECTED] wrote: Now the matching bracket is marked light blue all the time (I changed settings to background=dark), and in fact now I start confusing the cursor with the matched bracket, which gets really annoying. To stop the highlighting of matching brackets

Re: Can not run any command with ! in W2K

2006-05-27 Thread Mathias Michaelis
Hello Juan The problem is that any ! command returns, for example !!dir returns (after a couple seconds): E485: Can't read file x.tmp If I do :!dir a console opens and says: C:\WINNT\system32\CMD.EXE /c dir shell returned -1 Just some thoughts ... 1) In my _vimrc file, I

7.0 and cyrillic

2006-05-27 Thread Boyko Bantchev
Hello all, In Vim 7.0, I seem to be running into a problem when using cyrillic -- the cp1251 encoding, to be precise. I notice two things not properly working for me (note that none of them was a problem in the previous versions of Vim): 1) The ~ (tilde) command for switching the case of a

Re: 7.0 and cyrillic

2006-05-27 Thread A.J.Mechelynck
Boyko Bantchev wrote: Hello all, In Vim 7.0, I seem to be running into a problem when using cyrillic -- the cp1251 encoding, to be precise. I notice two things not properly working for me (note that none of them was a problem in the previous versions of Vim): 1) The ~ (tilde) command for

regexp question

2006-05-27 Thread Ling F. Zhang
I have this question working in vi, but I suppose it's generally enought for all regexp. How do I match across line? I would like to find the end to a sentence by looking for \.$^[A-Z], but it doesn't work. What is the correct way of match across two different lines. In the same spirity, How

Re: regexp question

2006-05-27 Thread A.J.Mechelynck
Ling F. Zhang wrote: I have this question working in vi, but I suppose it's generally enought for all regexp. How do I match across line? I would like to find the end to a sentence by looking for \.$^[A-Z], but it doesn't work. What is the correct way of match across two different lines. In the

Re: Can not run any command with ! in W2K

2006-05-27 Thread Suresh Govindachar
Juan Lanus wrote: On 5/27/06, Suresh Govindachar wrote: Start gvim using the command p:\ath\to\gvim.exe -u NONE -U NONE --noplugin In the resulting gvim, do :set shellcmdflag=3D/k Then :!ver The name of the window is D:\vim\vim70\vimrun.exe and the

Re: Can not run any command with ! in W2K

2006-05-27 Thread A.J.Mechelynck
Suresh Govindachar wrote: Juan Lanus wrote: On 5/27/06, Suresh Govindachar wrote: Start gvim using the command p:\ath\to\gvim.exe -u NONE -U NONE --noplugin In the resulting gvim, do :set shellcmdflag=3D/k Then :!ver The name of the window is

Re: 7.0 and cyrillic

2006-05-27 Thread Boyko Bantchev
On 5/27/06, A.J.Mechelynck [EMAIL PROTECTED] wrote: What I am proposing below is not a proper cure but (if it works) ... Your proposal works fine. Thanks a lot! Best regards, Boyko

Re: Jumping to Headline in h1Headline/h1

2006-05-27 Thread Juan Lanus
There is also the \zs stuff. For example /\zs. will set the cursor at the first character after a . Then n will do it again, and again ... Or maybe /[^]*\zs. Or /[^]*\zs[^]\+ that will highlight the tag's content. As of using fFtT for to move around the line, I find it much safer than repeated