Re: Understanding regxp implementation

2007-03-21 Thread Asiri Rathnayake
This mail bounced off for some reason, I'm repeating it. Sorry if you've already got this. - Hi Bram, Nikolai, All, I think the best way to understand current implementation of regxp is to first go through Henry Spencer's original regxp implementation ( thanks nikolai ). It's

Re: improving encryption in vim

2007-03-21 Thread Bram Moolenaar
Nicolas Weber wrote: To clarify, based on my understanding: if software is exported from the U.S., which vim arguably is, and it is capable of powerful encryption isn't vim exported from the Netherlands? Right, the main ftp server is in the Netherlands. All the rest are (cached)

Re: Copying a Massive amount of text to the clipboard

2007-03-21 Thread Matthew Winn
On Wed, 21 Mar 2007 07:45:39 +0100, A.J.Mechelynck [EMAIL PROTECTED] wrote: Method II: If you know exactly the line numbers you want: :3,90003y + For Method II, see :help :y. And if you don't know the line numbers (and don't want to find out and remember them) you can go to the

Re: Consistently exit message display with 'q'?

2007-03-21 Thread Stahlman Family
- Original Message - From: Jean-Rene David [EMAIL PROTECTED] To: vim@vim.org Sent: Tuesday, March 20, 2007 9:56 AM Subject: Re: Consistently exit message display with 'q'? * Bram Moolenaar [2007.03.20 11:45]: How many times did I repeat a command just because I had pressed Space

automatically save to filename

2007-03-21 Thread Eric Smith
I know that you can set the interval to auto-save to the swap file but how do I automatically save to the named file itself every n seconds? Thanks -- Eric Smith

Re: netrw: gracefully recovering from botched login

2007-03-21 Thread Charles E Campbell Jr
Marv Boyes wrote: Hello, all. This is going to seem painfully basic, I'm sure, but I haven't been able to find an answer elsewhere. I often use Vim to edit files over a network, and I have an unfortunate propensity for mis-typing my passwords on the first try. Also unfortunately, I find

Re: Updated Windows installer 7.0.219

2007-03-21 Thread Panos Laganakos
Is this version compiled with +python/dyn or +python? If so, is it python 2.4 or 2.5? On 3/20/07, fREW [EMAIL PROTECTED] wrote: On wtorek 20 marzec 2007, vim@vim.org wrote: firewall our build machine sits behind. So I'm open to solutions for how to remove obsoletes from the file set. I

RE: Quick search using vimgrep

2007-03-21 Thread Christophe Dupre
Thanks, that's what I wanted. I've modified it slightly so it automatically opens the quick fix windows too. Christophe -Original Message- From: Stahlman Family [mailto:[EMAIL PROTECTED] Sent: 21 March 2007 12:40 To: Christophe Dupre; vim@vim.org Subject: Re: Quick search using vimgrep

RE: Updated Windows installer 7.0.219

2007-03-21 Thread Steve Hall
From: Panos Laganakos, Wed, March 21, 2007 9:16 am Is this version compiled with +python/dyn or +python? If so, is it python 2.4 or 2.5? See the notes for the file: http://sourceforge.net/project/shownotes.php?release_id=495061group_id=43866 -- Steve Hall [ digitect dancingpaper com ]

RE: OT: Apparently I work for Bram...

2007-03-21 Thread Gene Kwiecinski
When company is a mandatory field, sometimes I write in n/a no company or the like. If the computer rejected that, I could always try None Whatsoever, Pty., but usually it doesn't. Computers are too matter-of-fact for anything like irony. I usually just make up a company name, like Spacely

Re: Updated Windows installer 7.0.219

2007-03-21 Thread Panos Laganakos
Ah, great. Thanks. On 3/21/07, Steve Hall [EMAIL PROTECTED] wrote: From: Panos Laganakos, Wed, March 21, 2007 9:16 am Is this version compiled with +python/dyn or +python? If so, is it python 2.4 or 2.5? See the notes for the file:

Re: automatically save to filename

2007-03-21 Thread Yakov Lerner
On 3/21/07, Eric Smith [EMAIL PROTECTED] wrote: I know that you can set the interval to auto-save to the swap file but how do I automatically save to the named file itself every n seconds? Yes, you can use 'CursorHold' autocommand for that. The following (untested) is probaly an easy

RE: Copying a Massive amount of text to the clipboard

2007-03-21 Thread Gene Kwiecinski
I have a 9MB XML files I am working with. Eep! I would like to select a block of about 90,000 lines in a file and copy them to the clipboard so they can be pasted in another file. Via 'vim', or another program/editor? Is there anyway to say to vim: Start selecting on line 3, and continue

Re: google summer of code: gdb - vim

2007-03-21 Thread Erik Bergman
I've tried clewn, and while it works (somewhat) it's far from perfect. I had also hoped for such a summer of code project. Solid debugger support is about the only thing left that I really miss in vim. Is it too late to add new project suggestions by now? /Erik On 3/17/07, Russell Bateman

Matchit with PL/SQL

2007-03-21 Thread bobf32
Hello. I have just discovered the matchit plugin and have been using it to navigate some Oracle PL/SQL scripts. My issue is as follows. If I have a script containing: create or replace procedure foo as begin     null ; end ; then by placing the cursor on the word begin and hitting %

Re: missing some easy integration in gnome?

2007-03-21 Thread Andrea Ratto
Maybe I have not been really clear and got lost in details in my first mail. To put it straight: 1: Do we want to be able to handle files opened by or dragged from nautilus over a remote connection? 2: Do we want to implement some options to make gvim behave more like gedit in the way it treat

Re: Matchit with PL/SQL

2007-03-21 Thread David . Fishburn
(Had to top post) I am the author of ftplugin/sql.vim which defines b:match_words. It was set this way so that the following will not match. begin end if I didn't realize plsql allowed your case. I think this could be addressed by saying the end cannot be followed by the known end statements

Re: google summer of code: gdb - vim

2007-03-21 Thread Bram Moolenaar
Erik Bergman wrote: I've tried clewn, and while it works (somewhat) it's far from perfect. I had also hoped for such a summer of code project. Solid debugger support is about the only thing left that I really miss in vim. Is it too late to add new project suggestions by now? You can submit

Customizing vim: How to change the char before commands

2007-03-21 Thread Some user
Hello, I'm new to Vim. I want to change the character before commands. For example saving is done by: :w enter Can it be made slightly easier by just pressing 'g' or some other key that's not taken? I don't know why every command has to be pre-pended by a difficult to reach character like

Re: Customizing vim: How to change the char before commands

2007-03-21 Thread Yakov Lerner
On 3/21/07, Some user [EMAIL PROTECTED] wrote: Hello, I'm new to Vim. I want to change the character before commands. For example saving is done by: :w enter Can it be made slightly easier by just pressing 'g' or some other key that's not taken? I don't know why every command has to be

Re: Customizing vim: How to change the char before commands

2007-03-21 Thread Tim Chase
I'm new to Vim. I want to change the character before commands. For example saving is done by: :w enter Can it be made slightly easier by just pressing 'g' or some other key that's not taken? I don't know why every command has to be pre-pended by a difficult to reach character like colon. In an

RE: Matchit with PL/SQL

2007-03-21 Thread bobf32
end case end if end loop Thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wed 21 March 2007 20:36 To: bobf32; vim Subject: Re: Matchit with PL/SQL (Had to top post) I am the author of ftplugin/sql.vim which defines b:match_words. It was set this

Re: Customizing vim: How to change the char before commands

2007-03-21 Thread A.J.Mechelynck
Tim Chase wrote: [...] Just my $0.02 adjusted for inflation, minus taxes, social security, and medicare. -tim LOL. Must be at least $20 after adjustment, no? Best regards, Tony. -- I believe that Ronald Reagan will someday make this country what it once was ... an arctic wilderness

Re: Customizing vim: How to change the char before commands

2007-03-21 Thread cga2000
On Wed, Mar 21, 2007 at 06:04:46PM EST, A.J.Mechelynck wrote: Tim Chase wrote: [...] Just my $0.02 adjusted for inflation, minus taxes, social security, and medicare. -tim LOL. Must be at least $20 after adjustment, no? Isn't the other way 'round..? With 0.02 cents left for the

Re: Customizing vim: How to change the char before commands

2007-03-21 Thread A.J.Mechelynck
cga2000 wrote: On Wed, Mar 21, 2007 at 06:04:46PM EST, A.J.Mechelynck wrote: Tim Chase wrote: [...] Just my $0.02 adjusted for inflation, minus taxes, social security, and medicare. -tim LOL. Must be at least $20 after adjustment, no? Isn't the other way 'round..? With 0.02 cents left

question about search

2007-03-21 Thread shawn bright
hello there, i am kinda new to vim, so i am wanting to learn the stuff that i think i will use the most first. One of the things i use a lot is search. i have found how to do a search like this /:s/reg/reg is there a way i can tab through the finds ? thanks

Re: question about search

2007-03-21 Thread A.J.Mechelynck
shawn bright wrote: hello there, i am kinda new to vim, so i am wanting to learn the stuff that i think i will use the most first. One of the things i use a lot is search. i have found how to do a search like this /:s/reg/reg is there a way i can tab through the finds ? thanks The above

Re: question about search

2007-03-21 Thread Mr. Shawn H. Corey
A.J.Mechelynck wrote: shawn bright wrote: hello there, i am kinda new to vim, so i am wanting to learn the stuff that i think i will use the most first. One of the things i use a lot is search. i have found how to do a search like this /:s/reg/reg is there a way i can tab through the finds ?

Re: question about search

2007-03-21 Thread shawn bright
cool, thanks, i knew there had to be something. thanks again. sk On 3/21/07, A.J.Mechelynck [EMAIL PROTECTED] wrote: shawn bright wrote: hello there, i am kinda new to vim, so i am wanting to learn the stuff that i think i will use the most first. One of the things i use a lot is search. i

Re: Customizing vim: How to change the char before commands

2007-03-21 Thread cga2000
On Wed, Mar 21, 2007 at 07:16:58PM EST, A.J.Mechelynck wrote: cga2000 wrote: On Wed, Mar 21, 2007 at 06:04:46PM EST, A.J.Mechelynck wrote: Tim Chase wrote: [...] Just my $0.02 adjusted for inflation, minus taxes, social security, and medicare. -tim LOL. Must be at least $20 after

Re: Consistently exit message display with 'q'?

2007-03-21 Thread John Orr
Thanks for the clarification Brett. At least if you have external commands you use regularly though, you could wrap them in a vim function, thereby making them effectively internal, making g useful. Just an update - I promised I'd investigate extending my patch to help those people who

Re: Consistently exit message display with 'q'?

2007-03-21 Thread panshizhu
John Orr [EMAIL PROTECTED] 写于 2007-03-22 12:43:51: Thanks for the clarification Brett. At least if you have external commands you use regularly though, you could wrap them in a vim function, thereby making them effectively internal, making g useful. Just an update - I promised I'd

Re: question about search

2007-03-21 Thread Dave Land
Shawn Vim friends, On Mar 21, 2007, at 6:21 PM, shawn bright wrote: cool, thanks, i knew there had to be something. And it keeps getting better. Due to Vim's extensive programmability (and keystroke mapping and the endless creativity of its developer and user communities), you can extend

Re: question about search

2007-03-21 Thread A.J.Mechelynck
Dave Land wrote: Shawn Vim friends, On Mar 21, 2007, at 6:21 PM, shawn bright wrote: cool, thanks, i knew there had to be something. And it keeps getting better. Due to Vim's extensive programmability (and keystroke mapping and the endless creativity of its developer and user communities),