Re: How to get ruby support for gvim73 on a windows XP machine.

2010-08-22 Thread Jeri Raye
Compiling gvim to get ruby support is not needed. I read in the documentation of the command-t plugin that you can download the installer from http://rubyinstaller.org/download.html Rgds, Jeri -- You received this message from the vim_use maillist. Do not top-post! Type your reply below

how to read long shell output

2010-08-22 Thread Yosi Izaq
Hi, Say I'm executing a shell command with long output and want to read the results. Just running the cmd will only show the last lines of output. The question is how to make VIM present it in a scrollable window (w/o writing to explicit file...)?- Alternately, how to direct the output to

Re: vimdiff-like highlighting within the same file?

2010-08-22 Thread Christian Brabandt
Hi Adam! On Fr, 20 Aug 2010, Adam Monsen wrote: How would you like the plugin to handle that automatically. If you make good suggestions, I might implement that. Do you mean the narrow region plugin? Actually, that plugin may not be involved at all. Here's a use case for what I'm

Re: how to read long shell output

2010-08-22 Thread Aaron Lewis
On 08/22/2010 08:42 PM, Yosi Izaq wrote: Hi, Say I'm executing a shell command with long output and want to read the results. Just running the cmd will only show the last lines of output. The question is how to make VIM present it in a scrollable window (w/o writing to explicit file...)?-

Re: how to read long shell output

2010-08-22 Thread Christian Brabandt
Hi Yosi! On So, 22 Aug 2010, Yosi Izaq wrote: Hi, Say I'm executing a shell command with long output and want to read the results. Just running the cmd will only show the last lines of output. The question is how to make VIM present it in a scrollable window (w/o writing to explicit

Re: how to read long shell output

2010-08-22 Thread Aaron Lewis
Hi Christian, How about :r! nm `find %:h -name *.so ...` to redirect the output into a scratch buffer? Wow , that's really cool , i tried r! sudo cat /var/log/messages , more than 1,265,552 entries , just a few seconds. -- Best Regards, Aaron Lewis - PGP: 0x4A6D32A0 FingerPrint EA63 26B2

Re: i really think the moderating is insulting to say the least

2010-08-22 Thread Kazuo Teramoto
2010/8/18 Raúl Núñez de Arenas Coronado raul...@gmail.com: For a start, moderators do this for free, on our spare time. And I'm not talking for myself, certainly, as I am the moderator that does less work. John manages the Vim Wiki and helps in the list. Tony... what can I say about Tony: I

Re: In Windows system() exec is too slow.

2010-08-22 Thread Tony Mechelynck
On 18/08/10 16:11, bill lam wrote: Срд, 18 Авг 2010, 777 писал(а): Hello All: I want use system() in vim script, I find it too slow. use it exec a very simple cmd, it will take about 1-2s (goto to cmd.exe, exec some cmd, reback to vim). Can make it

Re: how to read long shell output

2010-08-22 Thread yosi izaq
Aaron Lewis: should work with standard unix command `less` and pipe , did you try with it ? ! cd %:h nm `find .. -name *.so ` | less cr Doesn't work. See: Error detected while processing /users/yizaq/.vimrc: line 534: E492: Not an editor command: less cr Christian Brabandt: How about :r!

Re: ^M character - / CTRL-V CTRL-M

2010-08-22 Thread Tony Mechelynck
On 19/08/10 14:07, Sven Guckes wrote: [...] i have opened the attached file - and there are no errors at all. the message i see after startup is this: /tmp/RslToolsConfigure.vim [dos] 32L, 2263C vim sees that it is a DOS/Windows file and will write the EOLs accordingly. so.. all is good. why

Re: how to read long shell output

2010-08-22 Thread Charles E Campbell Jr
yosi izaq wrote: Aaron Lewis: should work with standard unix command `less` and pipe , did you try with it ? ! cd %:h nm `find .. -name *.so ` | less cr Doesn't work. See: Error detected while processing /users/yizaq/.vimrc: line 534: E492: Not an editor command: less cr Christian

RE: Vim 7.3 - E10 Errors Editing _vimrc

2010-08-22 Thread Roy Fulbright
Here are the steps: I edit a file (even an empty file) with '.vim' extension: gvim test.vim I get the E10 error messages. From: johnb.beck...@gmail.com To: vim_use@googlegroups.com Subject: RE: Vim 7.3 - E10 Errors Editing _vimrc Date: Sun, 22 Aug 2010 10:47:37 +1000 Roy Fulbright wrote:

Re: how to read long shell output

2010-08-22 Thread Christian Brabandt
Hi yosi! On So, 22 Aug 2010, yosi izaq wrote: I did :r! cd %:h nm `find .. -name *.so ` cr but output goes to current buffer, not scratch. I'm probably doing something wrong, could you please point out what? Well open a new buffer first ;) :h :enew regards, Christian -- -- You

Re: How to get ruby support for gvim73 on a windows XP machine.

2010-08-22 Thread Tony Mechelynck
On 21/08/10 16:16, sc wrote: On Saturday 21 August 2010 04:29:43 Jeri Raye wrote: Jeri Raye wrote on 20-8-2010 17:03: Hi, I'm using gvim73 on windows xp. [snip] I'm a complete newbie on compiling gvim. But how to do that on windows XP? [snip] If not, which (open source?) compiler

RE: Vim 7.3 - E10 Errors Editing _vimrc

2010-08-22 Thread Roy Fulbright
From: rfulb...@hotmail.com To: vim_use@googlegroups.com Subject: RE: Vim 7.3 - E10 Errors Editing _vimrc Date: Sun, 22 Aug 2010 12:47:45 -0400 Here are the steps: I edit a file (even an empty file) with '.vim' extension: gvim test.vim I get the E10 error messages. From:

Re: Vim 7.3 - E10 Errors Editing _vimrc

2010-08-22 Thread bill lam
I was also troubled by python.vim awhile ago, it was pointed by that one way to prevent python.vim from loading during startup would be add this line into .vimrc let g:vimsyn_embed=0 -- regards, GPG key 1024D/4434BAB3 2008-08-24 gpg

Re: how to read long shell output

2010-08-22 Thread Aaron Lewis
On 08/22/2010 11:16 PM, Charles E Campbell Jr wrote: yosi izaq wrote: Aaron Lewis: should work with standard unix command `less` and pipe , did you try with it ? ! cd %:h nm `find .. -name *.so ` | less cr Doesn't work. See: Error detected while processing /users/yizaq/.vimrc: line

Re: How to open the latest modified file

2010-08-22 Thread eliweiq001
Hi Christian ! On 8月20日, 下午7时19分, Christian Brabandt cbli...@256bit.org wrote: Hi eliweiq001! On Fr, 20 Aug 2010, eliweiq001 wrote: On 8月20日, 下午4时35分, Christian Brabandt cbli...@256bit.org wrote: Hi eliweiq001! And besides, when I :call OpenLastModified(1) there is an

The conceal feature makes wrap texts jagged

2010-08-22 Thread Xell Liu
Hi everybody, I like the new conceal feature very much. I use it to hide the URLs in my texts with wiki markup. But I notice that if the 'wrap' option is on at the same time, the displayed texts will be ugly especially in the case of long URL. The right margins are jagged. Can anyone give a

Re: How to open the latest modified file

2010-08-22 Thread Benjamin R. Haskell
On Sun, 22 Aug 2010, eliweiq001 wrote: I want to ask you something else. :exe OpenLastModified(q-args) You see, OpenLastModified is a function, but, why we can only use :exe but not :call ? I've tried :call but it won't work. OpenLastModified returns a string-form command to be