<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-888</id>
	<title>Nabble - Vim - Ruby - Dev</title>
	<updated>2009-09-12T03:09:06Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Vim---Ruby---Dev-f888.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim---Ruby---Dev-f888.html" />
	<subtitle type="html">&lt;a href=&quot;http://vim-ruby.rubyforge.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Vim/Ruby&lt;/a&gt;&amp;nbsp;Configuration Files.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-25413151</id>
	<title>Re: Some regexp pattern breaks the syntax highlighting.</title>
	<published>2009-09-12T03:09:06Z</published>
	<updated>2009-09-12T03:09:06Z</updated>
	<author>
		<name>Doug Kearns</name>
	</author>
	<content type="html">On Sat, Sep 12, 2009 at 1:46 PM, Tim Pope &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25413151&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; On Sat, Sep 12, 2009 at 12:37:52PM +0900, Morita Sho wrote:
&lt;br&gt;&amp;gt;&amp;gt; As result, the regexp pattern \( will not be interpreted as an escaped character
&lt;br&gt;&amp;gt;&amp;gt; if that pattern will not be displayed. Removing the &amp;quot;display&amp;quot; keyword for
&lt;br&gt;&amp;gt;&amp;gt; rubyRegexpEscape solves the problem for me.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Nice detective work.
&lt;br&gt;&lt;br&gt;+1 Our favourite kind of user. :)
&lt;br&gt;&lt;br&gt;Doug
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25413151&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Some-regexp-pattern-breaks-the-syntax-highlighting.-tp25408265p25413151.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25412805</id>
	<title>Re: Some regexp pattern breaks the syntax highlighting.</title>
	<published>2009-09-11T20:46:33Z</published>
	<updated>2009-09-11T20:46:33Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Sat, Sep 12, 2009 at 12:37:52PM +0900, Morita Sho wrote:
&lt;br&gt;&amp;gt; As result, the regexp pattern \( will not be interpreted as an escaped character
&lt;br&gt;&amp;gt; if that pattern will not be displayed. Removing the &amp;quot;display&amp;quot; keyword for
&lt;br&gt;&amp;gt; rubyRegexpEscape solves the problem for me.
&lt;br&gt;&lt;br&gt;Nice detective work. &amp;nbsp;I've pushed up your fix.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tim
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25412805&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Some-regexp-pattern-breaks-the-syntax-highlighting.-tp25408265p25412805.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25411326</id>
	<title>Re: Some regexp pattern breaks the syntax highlighting.</title>
	<published>2009-09-11T20:37:52Z</published>
	<updated>2009-09-11T20:37:52Z</updated>
	<author>
		<name>Morita Sho-3</name>
	</author>
	<content type="html">Some updates:
&lt;br&gt;&lt;br&gt;After some investigations, I suspect that the following line in
&lt;br&gt;syntax/ruby.rb is problematic.
&lt;br&gt;&lt;br&gt;&amp;nbsp; syn match &amp;nbsp;rubyRegexpEscape &amp;nbsp;&amp;quot;\\[].*?+^$|\\/(){}[]&amp;quot; &amp;nbsp;contained display
&lt;br&gt;&lt;br&gt;As far as I understand it, this matches a regexp escape character. I think the problem is
&lt;br&gt;the &amp;quot;display&amp;quot; keyword. According to Vim manual:
&lt;br&gt;&lt;br&gt;&amp;nbsp;display							*:syn-display*
&lt;br&gt;&lt;br&gt;&amp;nbsp;If the &amp;quot;display&amp;quot; argument is given, this item will be skipped when the
&lt;br&gt;&amp;nbsp;detected highlighting will not be displayed. &amp;nbsp;This will speed up highlighting,
&lt;br&gt;&amp;nbsp;by skipping this item when only finding the syntax state for the text that is
&lt;br&gt;&amp;nbsp;to be displayed.
&lt;br&gt;&lt;br&gt;As result, the regexp pattern \( will not be interpreted as an escaped character
&lt;br&gt;if that pattern will not be displayed. Removing the &amp;quot;display&amp;quot; keyword for
&lt;br&gt;rubyRegexpEscape solves the problem for me.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;-- 
&lt;br&gt;Morita Sho &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25411326&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;morita-pub-en@...&lt;/a&gt;&amp;gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25411326&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Some-regexp-pattern-breaks-the-syntax-highlighting.-tp25408265p25411326.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25408265</id>
	<title>Some regexp pattern breaks the syntax highlighting.</title>
	<published>2009-09-11T13:17:18Z</published>
	<updated>2009-09-11T13:17:18Z</updated>
	<author>
		<name>Morita Sho-3</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Some regexp pattern breaks the syntax highlighting.
&lt;br&gt;&lt;br&gt;&lt;br&gt;How to reproduce the problem:
&lt;br&gt;&lt;br&gt;First of all, create a ruby script as following and open it with Vim.
&lt;br&gt;&lt;br&gt;% cat test.rb
&lt;br&gt;func /\(/
&lt;br&gt;puts
&lt;br&gt;&lt;br&gt;At this point, the script will be highlighted correctly.
&lt;br&gt;Then, hit Ctrl-E to scroll down the window (the line &amp;quot;func /\(/&amp;quot; goes
&lt;br&gt;out of the screen), and hit Ctrl-L to redraw. After redrawing the window,
&lt;br&gt;the line &amp;quot;puts&amp;quot; will be highlighted wrongly as a regexp literal.
&lt;br&gt;&lt;br&gt;It seems that the highlighting works if the line &amp;quot;func /\(/&amp;quot; is visible,
&lt;br&gt;but won't work if the line &amp;quot;func /\(/&amp;quot; is out of the screen.
&lt;br&gt;&lt;br&gt;I tested latest syntax/ruby.vim pulled from git repository, but it doesn't
&lt;br&gt;solve the problem.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;-- 
&lt;br&gt;Morita Sho &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25408265&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;morita-pub-en@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25408265&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Some-regexp-pattern-breaks-the-syntax-highlighting.-tp25408265p25408265.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23772120</id>
	<title>(debian,ruby,Qt) no completion for Qt with vim</title>
	<published>2009-05-28T16:50:09Z</published>
	<updated>2009-05-28T16:50:09Z</updated>
	<author>
		<name>lolveley</name>
	</author>
	<content type="html">hello,
&lt;br&gt;&lt;br&gt;I have a little/big problem with vim and ruby.
&lt;br&gt;little because almost all works fine : on debian I installed vim,vim-ruby,ruby1.8,qt4-qtruby, and Qt.
&lt;br&gt;on vim I have the syntax coloring that's working, and a program like &amp;quot;print require 'Qt4' &amp;quot; returns true : Qt4 is recognized.
&lt;br&gt;&lt;br&gt;but I have not the completion for Qt : if I enter &amp;quot;a=Qt:: &amp;quot; +CTRL X+CTRL O, I have the messsage &amp;quot;pattern not found&amp;quot; .
&lt;br&gt;&lt;br&gt;on vim I have:
&lt;br&gt;:set ofu? &amp;nbsp; &amp;nbsp; =&amp;gt; &amp;nbsp;omnifunc=rubycomplete#Complete
&lt;br&gt;:set ft? &amp;nbsp; &amp;nbsp; &amp;nbsp; =&amp;gt; &amp;nbsp;filetype=ruby
&lt;br&gt;:filetype &amp;nbsp; &amp;nbsp; &amp;nbsp;=&amp;gt; all 3 are ON
&lt;br&gt;&lt;br&gt;can you help me to have the completion?
&lt;br&gt;or maybe I have made a mistake, an oversight.
&lt;br&gt;&lt;br&gt;thx,
&lt;br&gt;&lt;br&gt;olivier.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%28debian%2Cruby%2CQt%29-no-completion-for-Qt-with-vim-tp23772120p23772120.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23609016</id>
	<title>Re: Things I wish to do in VIM but currently cannot.</title>
	<published>2009-05-18T20:12:37Z</published>
	<updated>2009-05-18T20:12:37Z</updated>
	<author>
		<name>zopio</name>
	</author>
	<content type="html">Have you tried turning on the format options in your ~/.vimrc file? &amp;nbsp;type :help format-options to see a full list of what you can set, but adding :set fo+=aw2tq should allow you to do the type of text-wrapping that you're looking for.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;kunjaan wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&amp;nbsp; &amp;nbsp;Is there someway I can make the VIM line break after 80 characters. I dont want the text to wrap around but create a new line. And I wish it would break off the complete last word. So instead of &amp;nbsp; &lt;i&gt;fo &lt;/i&gt;in the previous and&lt;i&gt;&amp;nbsp;o&lt;/i&gt;&amp;nbsp;in the next line, can it break with &lt;i&gt;foo &lt;/i&gt;in the next line?
&lt;br&gt;&lt;br&gt;Im also facing some problems, I looked around in the forum and didnt find any solutions discussed. Im sorry if this has been resolved earlier.
&lt;br&gt;&lt;br&gt;1. When I end my comment and press enter, I get a # in the new line. This is cool but when I delete # and want to start a line of code, I dont get syntax highlighting there. IT=t still thinks what Im typing is a comment. Is this a bug or am I doing it wrong?
&lt;br&gt;&lt;br&gt;2. One more thing is that I have set the shiftwidth to 4. But when I press Ctrl+S to save the document, the cursor jumps to the beginning of the sentence. I then need to manually go back to my original position to begin the code. Is there a way I can resolve this?
&lt;br&gt;&lt;br&gt;Thank you for reading this. I am new to Ruby and Vim. I hope you guys help me out.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Things-I-wish-to-do-in-VIM-but-currently-cannot.-tp23267774p23609016.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-23267774</id>
	<title>Things I wish to do in VIM but currently cannot.</title>
	<published>2009-04-27T17:10:24Z</published>
	<updated>2009-04-27T17:10:24Z</updated>
	<author>
		<name>kunjaan</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&amp;nbsp; &amp;nbsp;Is there someway I can make the VIM line break after 80 characters. I dont want the text to wrap around but create a new line. And I wish it would break off the complete last word. So instead of &amp;nbsp; &lt;i&gt;fo &lt;/i&gt;in the previous and&lt;i&gt;&amp;nbsp;o&lt;/i&gt;&amp;nbsp;in the next line, can it break with &lt;i&gt;foo &lt;/i&gt;in the next line?
&lt;br&gt;&lt;br&gt;Im also facing some problems, I looked around in the forum and didnt find any solutions discussed. Im sorry if this has been resolved earlier.
&lt;br&gt;&lt;br&gt;1. When I end my comment and press enter, I get a # in the new line. This is cool but when I delete # and want to start a line of code, I dont get syntax highlighting there. IT=t still thinks what Im typing is a comment. Is this a bug or am I doing it wrong?
&lt;br&gt;&lt;br&gt;2. One more thing is that I have set the shiftwidth to 4. But when I press Ctrl+S to save the document, the cursor jumps to the beginning of the sentence. I then need to manually go back to my original position to begin the code. Is there a way I can resolve this?
&lt;br&gt;&lt;br&gt;Thank you for reading this. I am new to Ruby and Vim. I hope you guys help me out.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Things-I-wish-to-do-in-VIM-but-currently-cannot.-tp23267774p23267774.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22708308</id>
	<title>Re: Indent problems with symbols containing keywords - solved?</title>
	<published>2009-03-25T11:17:31Z</published>
	<updated>2009-03-25T11:17:31Z</updated>
	<author>
		<name>Cezary Bagiński</name>
	</author>
	<content type="html">I tried to git-clone from rubyforge instead of git hub, which was dumb. 
&lt;br&gt;(&lt;a href=&quot;http://rubyforge.org/scm/?group_id=16&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/scm/?group_id=16&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;HEAD works fine, thanks. Sorry for the trouble.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Tim Pope wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Tue, Mar 17, 2009 at 12:51:25AM +0100, Cezary Bagiński wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The following gives the wrong indent (vim 7.1.314, Ubuntu):
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------(after indent its the same)-------
&lt;br&gt;&amp;gt;&amp;gt; class AAA
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; def aaa
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; a = [ :title,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; :from,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; :until,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; ]
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; end
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; end
&lt;br&gt;&amp;gt;&amp;gt; -----------------
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It seems the 'until' is matched, even when it's a symbol. I dug through 
&lt;br&gt;&amp;gt;&amp;gt; the 'syntax/ruby.vim' I already had, since the rubyforge git access is 
&lt;br&gt;&amp;gt;&amp;gt; broken (?).
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The following is the best I could think of:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; add the \@&amp;lt;! pattern to ignore symbols, replacing all instances of 
&lt;br&gt;&amp;gt;&amp;gt; keyword matchers, like:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 	\\&amp;lt;\\(while\\|until\\|for\\)\\&amp;gt;&amp;quot;)'
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; with:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 	\\&amp;lt;\\(while\\|[:]\@&amp;lt;!until\\|for\\)\\&amp;gt;&amp;quot;)'
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I did it for just the until keyword and it seems to work fine.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This appears to already be in effect in the latest version of Vim-Ruby.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Tim
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; vim-ruby-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22708308&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22708308&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Indent-problems-with-symbols-containing-keywords---solved--tp22550143p22708308.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22666917</id>
	<title>Re: Indent problems with symbols containing keywords - solved?</title>
	<published>2009-03-23T06:34:50Z</published>
	<updated>2009-03-23T06:34:50Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Tue, Mar 17, 2009 at 12:51:25AM +0100, Cezary Bagiński wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The following gives the wrong indent (vim 7.1.314, Ubuntu):
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; ---------(after indent its the same)-------
&lt;br&gt;&amp;gt; class AAA
&lt;br&gt;&amp;gt; &amp;nbsp; def aaa
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; a = [ :title,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; :from,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; :until,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ]
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; end
&lt;br&gt;&amp;gt; &amp;nbsp; end
&lt;br&gt;&amp;gt; -----------------
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It seems the 'until' is matched, even when it's a symbol. I dug through 
&lt;br&gt;&amp;gt; the 'syntax/ruby.vim' I already had, since the rubyforge git access is 
&lt;br&gt;&amp;gt; broken (?).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The following is the best I could think of:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; add the \@&amp;lt;! pattern to ignore symbols, replacing all instances of 
&lt;br&gt;&amp;gt; keyword matchers, like:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	\\&amp;lt;\\(while\\|until\\|for\\)\\&amp;gt;&amp;quot;)'
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; with:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	\\&amp;lt;\\(while\\|[:]\@&amp;lt;!until\\|for\\)\\&amp;gt;&amp;quot;)'
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I did it for just the until keyword and it seems to work fine.
&lt;/div&gt;&lt;br&gt;This appears to already be in effect in the latest version of Vim-Ruby.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tim
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22666917&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Indent-problems-with-symbols-containing-keywords---solved--tp22550143p22666917.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-22550143</id>
	<title>Indent problems with symbols containing keywords - solved?</title>
	<published>2009-03-16T16:51:25Z</published>
	<updated>2009-03-16T16:51:25Z</updated>
	<author>
		<name>Cezary Bagiński</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;The following gives the wrong indent (vim 7.1.314, Ubuntu):
&lt;br&gt;&lt;br&gt;---------(after indent its the same)-------
&lt;br&gt;class AAA
&lt;br&gt;&amp;nbsp; &amp;nbsp;def aaa
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;a = [ :title,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;:from,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;:until,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;]
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end
&lt;br&gt;&amp;nbsp; &amp;nbsp;end
&lt;br&gt;-----------------
&lt;br&gt;&lt;br&gt;It seems the 'until' is matched, even when it's a symbol. I dug through 
&lt;br&gt;the 'syntax/ruby.vim' I already had, since the rubyforge git access is 
&lt;br&gt;broken (?).
&lt;br&gt;&lt;br&gt;The following is the best I could think of:
&lt;br&gt;&lt;br&gt;add the \@&amp;lt;! pattern to ignore symbols, replacing all instances of 
&lt;br&gt;keyword matchers, like:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \\&amp;lt;\\(while\\|until\\|for\\)\\&amp;gt;&amp;quot;)'
&lt;br&gt;&lt;br&gt;with:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \\&amp;lt;\\(while\\|[:]\@&amp;lt;!until\\|for\\)\\&amp;gt;&amp;quot;)'
&lt;br&gt;&lt;br&gt;I did it for just the until keyword and it seems to work fine.
&lt;br&gt;&lt;br&gt;Could the problem be caused by Vim treating the ':' char as part of a 
&lt;br&gt;keyword?
&lt;br&gt;&lt;br&gt;Thanks in advance.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=22550143&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Indent-problems-with-symbols-containing-keywords---solved--tp22550143p22550143.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21359853</id>
	<title>Re: Options Dump When Using vim-ruby On Ruby</title>
	<published>2009-01-08T11:32:27Z</published>
	<updated>2009-01-08T11:32:27Z</updated>
	<author>
		<name>Tom E Purl</name>
	</author>
	<content type="html">
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Thanks a lot! &amp;nbsp;Your help made it
obvious that I put a carriage return in my &amp;quot;autocmd&amp;quot; lines.&lt;br&gt;
&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Tom Purl&lt;/font&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21359853&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Options-Dump-When-Using-vim-ruby-On-Ruby-tp21314877p21359853.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21322885</id>
	<title>Re: Options Dump When Using vim-ruby On Ruby</title>
	<published>2009-01-06T16:52:09Z</published>
	<updated>2009-01-06T16:52:09Z</updated>
	<author>
		<name>Doug Kearns</name>
	</author>
	<content type="html">Actually you don't even need the 'omnifunc' line since we set it in
&lt;br&gt;the filetype plugin.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Doug
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21322885&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Options-Dump-When-Using-vim-ruby-On-Ruby-tp21314877p21322885.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21322845</id>
	<title>Re: Options Dump When Using vim-ruby On Ruby</title>
	<published>2009-01-06T16:49:49Z</published>
	<updated>2009-01-06T16:49:49Z</updated>
	<author>
		<name>Doug Kearns</name>
	</author>
	<content type="html">On 1/7/09, Tom E Purl &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21322845&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tep2@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm receiving a lot of strange errors when I try to use vim-ruby on Windows.
&lt;br&gt;&amp;gt; &amp;nbsp;Any help that anyone can give me would be greatly appreciated.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Every time I start up vim or gvim, I get the following error:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Error detected while processing E:\apps\vim\_vimrc:
&lt;br&gt;&amp;gt; line 243:
&lt;br&gt;&amp;gt; E492: Not an editor command: omnifunc=rubycomplete#Complete
&lt;br&gt;&amp;gt; E486: Pattern not found: rubycomplete_buffer_loading = 1
&lt;br&gt;&amp;gt; E486: Pattern not found: rubycomplete_classes_in_global = 1
&lt;/div&gt;&amp;lt;snip&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt; Here's the pertinent lines in my _vimrc file:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;quot; Ruby goodies
&lt;br&gt;&amp;gt; autocmd FileType ruby,eruby set
&lt;br&gt;&amp;gt; omnifunc=rubycomplete#Complete
&lt;br&gt;&lt;br&gt;set omnifunc=rubycomplete#Complete
&lt;br&gt;&lt;br&gt;&amp;gt; autocmd FileType ruby,eruby let
&lt;br&gt;&amp;gt; g:rubycomplete_buffer_loading = 1
&lt;br&gt;&lt;br&gt;let g:rubycomplete_buffer_loading = 1
&lt;br&gt;&lt;br&gt;&amp;gt; autocmd FileType ruby,eruby let
&lt;br&gt;&amp;gt; g:rubycomplete_classes_in_global = 1
&lt;br&gt;&lt;br&gt;let g:rubycomplete_classes_in_global = 1
&lt;br&gt;&lt;br&gt;&amp;lt;snip&amp;gt;
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Doug
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21322845&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Options-Dump-When-Using-vim-ruby-On-Ruby-tp21314877p21322845.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21314877</id>
	<title>Options Dump When Using vim-ruby On Ruby</title>
	<published>2009-01-06T08:03:16Z</published>
	<updated>2009-01-06T08:03:16Z</updated>
	<author>
		<name>Tom E Purl</name>
	</author>
	<content type="html">
&lt;p&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;I'm receiving a lot of strange errors
when I try to use vim-ruby on Windows. &amp;nbsp;Any help that anyone can give
me would be greatly appreciated.&lt;/font&gt;
&lt;p&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Every time I start up vim or gvim, I
get the following error:&lt;/font&gt;
&lt;p&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;Error detected while processing E:\apps\vim\_vimrc:&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;line 243:&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;E492: Not an editor command: omnifunc=rubycomplete#Complete&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;E486: Pattern not found: rubycomplete_buffer_loading
= 1&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;E486: Pattern not found: rubycomplete_classes_in_global
= 1&lt;/font&gt;
&lt;p&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;When I actually try to open a Ruby file,
I get a dump of all of my configuration options. &amp;nbsp;This dump is 20
pages long.&lt;/font&gt;
&lt;p&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Here's how I installed vim-ruby:&lt;/font&gt;
&lt;p&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;E:\apps\ruby\bin&amp;gt;ruby -S gem install
vim-ruby&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;Successfully installed vim-ruby-2007.05.07&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;1 gem installed&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;E:\apps\ruby\bin&amp;gt;ruby -S vim-ruby-install.rb&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;Possible Vim installation directories:&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1) F:/vimfiles&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2) E:/apps/vim/vimfiles&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;Please select one (or anything else to
specify another directory): 2&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;autoload/rubycomplete.vim -&amp;gt; E:/apps/vim/vimfiles/autoload/rubycomplete.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;compiler/eruby.vim &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp;-&amp;gt; E:/apps/vim/vimfiles/compiler/eruby.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;compiler/ruby.vim &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; -&amp;gt; E:/apps/vim/vimfiles/compiler/ruby.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;compiler/rubyunit.vim &amp;nbsp; &amp;nbsp; -&amp;gt;
E:/apps/vim/vimfiles/compiler/rubyunit.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;ftdetect/ruby.vim &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; -&amp;gt; E:/apps/vim/vimfiles/ftdetect/ruby.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;ftplugin/eruby.vim &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp;-&amp;gt; E:/apps/vim/vimfiles/ftplugin/eruby.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;ftplugin/ruby.vim &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; -&amp;gt; E:/apps/vim/vimfiles/ftplugin/ruby.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;indent/eruby.vim &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp;-&amp;gt; E:/apps/vim/vimfiles/indent/eruby.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;indent/ruby.vim &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; -&amp;gt; E:/apps/vim/vimfiles/indent/ruby.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;syntax/eruby.vim &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp;-&amp;gt; E:/apps/vim/vimfiles/syntax/eruby.vim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier&quot;&gt;syntax/ruby.vim &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; -&amp;gt; E:/apps/vim/vimfiles/syntax/ruby.vim&lt;/font&gt;
&lt;br&gt;
&lt;p&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Here's the pertinent lines in my _vimrc
file:&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&amp;quot; Ruby goodies&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;autocmd FileType ruby,eruby set&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;omnifunc=rubycomplete#Complete&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;autocmd FileType ruby,eruby let&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;g:rubycomplete_buffer_loading = 1&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;autocmd FileType ruby,eruby let&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;g:rubycomplete_classes_in_global =
1&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;map &amp;lt;leader&amp;gt;mr &amp;lt;ESC&amp;gt;:rubyf
%&amp;lt;CR&amp;gt;&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;...and here's my Vim version and compile
flags:&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;:version&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;VIM - Vi IMproved 7.2 (2008 Aug 9,
compiled Dec &amp;nbsp;9 2008 07:09:33)&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;MS-Windows 32-bit console version&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;Included patches: 1-68&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;Compiled by &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21314877&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;digitectNO@...&lt;/a&gt;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;Big version without GUI. &amp;nbsp;Features
included (+) or not (-):&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;+arabic +autocmd -balloon_eval -browse
++builtin_terms +byte_offset +cindent +clientserver +clipboard +cmdline_compl
+cmdline_hist +cmdline_info&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;+comments +cryptv +cscope +cursorshape
+dialog_con +diff +digraphs -dnd -ebcdic +emacs_tags +eval +ex_extra +extra_search
+farsi +file_in_path&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;+find_in_path +float +folding -footer
+gettext/dyn -hangul_input +iconv/dyn +insert_expand +jumplist +keymap
+langmap +libcall +linebreak&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;+lispindent +listcmds +localmap +menu
+mksession +modify_fname +mouse -mouseshape +multi_byte_ime/dyn +multi_lang
+mzscheme/dyn -netbeans_intg&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;-osfiletype +path_extra +perl/dyn -postscript
+printer -profile +python/dyn +quickfix +reltime +rightleft +ruby/dyn +scrollbind
+signs +smartindent&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;-sniff +statusline -sun_workshop +syntax
+tag_binary +tag_old_static -tag_any_white +tcl/dyn -tgetent -termresponse
+textobjects +title -toolbar&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;+user_commands +vertsplit +virtualedit
+visual +visualextra +viminfo +vreplace +wildignore +wildmenu +windows
+writebackup -xfontset -xim&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;-xterm_save -xpm_w32&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&amp;nbsp; &amp;nbsp;system vimrc file: &amp;quot;$VIM\vimrc&amp;quot;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;user vimrc file:
&amp;quot;$HOME\_vimrc&amp;quot;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&amp;nbsp;2nd user vimrc file: &amp;quot;$VIM\_vimrc&amp;quot;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; user exrc file:
&amp;quot;$HOME\_exrc&amp;quot;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;&amp;nbsp; 2nd user exrc file: &amp;quot;$VIM\_exrc&amp;quot;&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;Compilation: gcc -O3 -fomit-frame-pointer
-freg-struct-return -fno-strength-reduce -DWIN32 -DHAVE_PATHDEF -DFEAT_BIG
-DWINVER=0x0400 -D_WIN32_WINNT=0x0400 -DFEAT_PERL -DDYNAMIC_PERL -DDYNAMIC_PERL_DLL=&amp;quot;perl58.dll&amp;quot;
-DFEAT_PYTHON -DDYNAMIC_PYTHON -DDYNAMIC_PYTHON_DLL=&amp;quot;python25.dll&amp;quot;
-DFEAT_RUBY -DDYNAMIC_RUBY -DDYNAMIC_RUBY_DLL=&amp;quot;msvcrt-ruby18.dll&amp;quot;
-DDYNAMIC_RUBY_VER=18 -DFEAT_MZSCHEME -DDYNAMIC_MZSCHEME -DDYNAMIC_MZSCH_DLL=&amp;quot;libmzsch370.dll&amp;quot;
-DDYNAMIC_MZGC_DLL=&amp;quot;libmzgc370.dll&amp;quot; -DFEAT_TCL -DDYNAMIC_TCL
-DDYNAMIC_TCL_DLL=&amp;quot;tcl84.dll&amp;quot; -DDYNAMIC_GETTEXT -DDYNAMIC_ICONV
-DFEAT_MBYTE -DFEAT_MBYTE_IME -DDYNAMIC_IME -DFEAT_CSCOPE -DFEAT_NETBEANS_INTG
-DFEAT_GUI_W32 -DFEAT_CLIPBOARD -DFEAT_OLE -march=i386 -Iproto -I/cygdrive/c/PERL/lib/CORE
-I/cygdrive/c/PYTHON25/include -I/cygdrive/c/RUBY/lib/ruby/1.8/i386-mswin32
-I/cygdrive/c/PROGRA~1/MzScheme/include -I/cygdrive/c/Tcl/include -s -mno-cygwin&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;Courier New&quot;&gt;Linking: gcc -s -o gvim.exe &amp;nbsp;-luuid
-lole32 /cygdrive/c/Tcl/lib/tclstub84.lib -lwsock32 -mwindows -lcomctl32
-lversion -loleaut32 -lstdc++&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Here's also a couple of other things
to consider:&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;* Ruby is installed on a thumb drive,and
its path is E:\apps\ruby&lt;/font&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;* I also have Jruby installed on this
machine, and Jruby appears in my $PATH before ruby. &amp;nbsp;I tried putting
ruby before jruby in my path, but that didn't make a difference.&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;The good news is that the big feature
that I can use omnifunc with Ruby. &amp;nbsp;The bad news is that I have to
page through 20 pages of configuration information every time I open a
ruby file.&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Has anyone ever seen an error like this
before?&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Thanks in advance!&lt;/font&gt;
&lt;br&gt;
&lt;br&gt;&lt;font size=2 face=&quot;sans-serif&quot;&gt;Tom Purl&lt;/font&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=21314877&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Options-Dump-When-Using-vim-ruby-On-Ruby-tp21314877p21314877.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-21284587</id>
	<title>fuzzyfinder.vim and rubygems 1.3.1 are not compatible</title>
	<published>2009-01-04T18:45:36Z</published>
	<updated>2009-01-04T18:45:36Z</updated>
	<author>
		<name>oreng</name>
	</author>
	<content type="html">I get this error when running vim with fuzzyfinder.vim and fuzzyfinder_textmate.vim:
&lt;br&gt;&lt;br&gt;Error detected while processing function InstantiateTextMateMode:
&lt;br&gt;line &amp;nbsp; 17: LoadError: /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- fuzzy_file_finder
&lt;br&gt;&lt;br&gt;(with rubygems 1.3.0 everything works fine)
&lt;br&gt;&lt;br&gt;any idea how to solve this?
&lt;br&gt;Thanks!</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/fuzzyfinder.vim-and-rubygems-1.3.1-are-not-compatible-tp21284587p21284587.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18785148</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-08-01T18:29:56Z</published>
	<updated>2008-08-01T18:29:56Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Sat, Aug 02, 2008 at 11:02:03AM +1000, Doug Kearns wrote:
&lt;br&gt;&amp;gt; My only concern is that in working around it we neglect making
&lt;br&gt;&amp;gt; improvements to Vim's Ruby interface. &amp;nbsp;I know Tim was doing some work
&lt;br&gt;&amp;gt; on it last year but I'm not sure of the end result.
&lt;br&gt;&lt;br&gt;I stalled out when debating just what sort of backwards incompatible
&lt;br&gt;changes were acceptable. &amp;nbsp;Parts of the API are horribly broken but I
&lt;br&gt;know Bram greatly values backwards compatibility. &amp;nbsp;I haven't discussed
&lt;br&gt;it with him.
&lt;br&gt;&lt;br&gt;That, and I don't really have a way to test it on Windows. &amp;nbsp;The way
&lt;br&gt;the dynamic linking works on Windows means there is a big chunk of
&lt;br&gt;if_ruby.c that's essentially in a #if 0 block on my setup.
&lt;br&gt;&lt;br&gt;If I could find a solution for Windows testing I'd be willing to take
&lt;br&gt;it up again.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tim
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18785148&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18785148.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18785101</id>
	<title>Re: Git migration</title>
	<published>2008-08-01T18:21:20Z</published>
	<updated>2008-08-01T18:21:20Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Sat, Aug 02, 2008 at 10:56:22AM +1000, Doug Kearns wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Sat, Aug 2, 2008 at 7:56 AM, Tim Pope &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18785101&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Okay, since nobody raised any objections I'm preparing to make the
&lt;br&gt;&amp;gt; &amp;gt; migration to git official. &amp;nbsp;Here's a status report.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Mark created a vim-ruby account on github and pushed up my import to
&lt;br&gt;&amp;gt; &amp;gt; it. &amp;nbsp;He and I are currently the only collaborators. &amp;nbsp;Any other
&lt;br&gt;&amp;gt; &amp;gt; maintainers who would like to continue in that role should send me
&lt;br&gt;&amp;gt; &amp;gt; their github accounts so I can add them. &amp;nbsp;In a few weeks, I'll
&lt;br&gt;&amp;gt; &amp;gt; probably &amp;quot;retire&amp;quot; anyone who hasn't responded.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I don't feel particularly strongly about it one way or the other, but
&lt;br&gt;&amp;gt; I thought we were planning on using RubyForge for the 'official' repo?
&lt;/div&gt;&lt;br&gt;There's no mechanism in rubyforge to switch SCMs. &amp;nbsp;You could put in a
&lt;br&gt;support request I suppose. &amp;nbsp;Now that I know group accounts are kosher,
&lt;br&gt;though, I'm slightly biased towards github anyways. &amp;nbsp;The good news is
&lt;br&gt;it's easy to move a git repository so we're not really committed
&lt;br&gt;either way.
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; I'm going to advise we continue maintaining the changelog until we
&lt;br&gt;&amp;gt; &amp;gt; decide on a replacement practice. &amp;nbsp;Please write well formed commit
&lt;br&gt;&amp;gt; &amp;gt; messages as well (a subject line around 50 characters or less, a blank
&lt;br&gt;&amp;gt; &amp;gt; line, then an optional body wrapped to 72 characters).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; While I'm quite partial to the GNU ChangeLog format this does seem
&lt;br&gt;&amp;gt; like redundant work. &amp;nbsp;Aren't there a few tools to generate a GNU
&lt;br&gt;&amp;gt; ChangeLog anyway?
&lt;br&gt;&lt;br&gt;I'm sure we could find or write something if it came down to it.
&lt;br&gt;Meanwhile, I'm now rethinking my suggestion to continue maintaining
&lt;br&gt;it. &amp;nbsp;A versioned ChangeLog is a constant source of conflicts when
&lt;br&gt;merging.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tim
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18785101&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Git-migration-tp18783264p18785101.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18784983</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-08-01T18:02:03Z</published>
	<updated>2008-08-01T18:02:03Z</updated>
	<author>
		<name>Doug Kearns</name>
	</author>
	<content type="html">2008/7/15 Mark Guzman &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18784983&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;segfault@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&lt;br&gt;&amp;lt;snip&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt; I've had a completion project running in the background and would like some
&lt;br&gt;&amp;gt; feedback on the overall concept. I'm spawning a ruby process per buffer to
&lt;br&gt;&amp;gt; handle completions for that buffer. Completion uses rinda in the embedded
&lt;br&gt;&amp;gt; ruby env to communicate with the ruby processes and provide a list of
&lt;br&gt;&amp;gt; values.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; All of that is to get around some of the embedding flakiness that's come up.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thoughts...
&lt;br&gt;&lt;br&gt;Could you refresh my memory as to these issues?
&lt;br&gt;&lt;br&gt;My only concern is that in working around it we neglect making
&lt;br&gt;improvements to Vim's Ruby interface. &amp;nbsp;I know Tim was doing some work
&lt;br&gt;on it last year but I'm not sure of the end result.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Doug
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18784983&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18784983.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18784934</id>
	<title>Re: Git migration</title>
	<published>2008-08-01T17:56:22Z</published>
	<updated>2008-08-01T17:56:22Z</updated>
	<author>
		<name>Doug Kearns</name>
	</author>
	<content type="html">On Sat, Aug 2, 2008 at 7:56 AM, Tim Pope &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18784934&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Okay, since nobody raised any objections I'm preparing to make the
&lt;br&gt;&amp;gt; migration to git official. &amp;nbsp;Here's a status report.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Mark created a vim-ruby account on github and pushed up my import to
&lt;br&gt;&amp;gt; it. &amp;nbsp;He and I are currently the only collaborators. &amp;nbsp;Any other
&lt;br&gt;&amp;gt; maintainers who would like to continue in that role should send me
&lt;br&gt;&amp;gt; their github accounts so I can add them. &amp;nbsp;In a few weeks, I'll
&lt;br&gt;&amp;gt; probably &amp;quot;retire&amp;quot; anyone who hasn't responded.
&lt;br&gt;&lt;br&gt;I don't feel particularly strongly about it one way or the other, but
&lt;br&gt;I thought we were planning on using RubyForge for the 'official' repo?
&lt;br&gt;&lt;br&gt;&amp;lt;snip&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt; I'm going to advise we continue maintaining the changelog until we
&lt;br&gt;&amp;gt; decide on a replacement practice. &amp;nbsp;Please write well formed commit
&lt;br&gt;&amp;gt; messages as well (a subject line around 50 characters or less, a blank
&lt;br&gt;&amp;gt; line, then an optional body wrapped to 72 characters).
&lt;br&gt;&lt;br&gt;While I'm quite partial to the GNU ChangeLog format this does seem
&lt;br&gt;like redundant work. &amp;nbsp;Aren't there a few tools to generate a GNU
&lt;br&gt;ChangeLog anyway?
&lt;br&gt;&lt;br&gt;&amp;gt; If there are no substantial objections, in the next few days I'm going
&lt;br&gt;&amp;gt; to make it official by updating any documentation I find. &amp;nbsp;I'll also
&lt;br&gt;&amp;gt; create a CVS commit deleting everything and adding a text file
&lt;br&gt;&amp;gt; pointing to the new repository.
&lt;br&gt;&lt;br&gt;Thanks for working on this.
&lt;br&gt;&lt;br&gt;Doug
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18784934&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Git-migration-tp18783264p18784934.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18783264</id>
	<title>Git migration</title>
	<published>2008-08-01T14:56:03Z</published>
	<updated>2008-08-01T14:56:03Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">Okay, since nobody raised any objections I'm preparing to make the
&lt;br&gt;migration to git official. &amp;nbsp;Here's a status report.
&lt;br&gt;&lt;br&gt;Mark created a vim-ruby account on github and pushed up my import to
&lt;br&gt;it. &amp;nbsp;He and I are currently the only collaborators. &amp;nbsp;Any other
&lt;br&gt;maintainers who would like to continue in that role should send me
&lt;br&gt;their github accounts so I can add them. &amp;nbsp;In a few weeks, I'll
&lt;br&gt;probably &amp;quot;retire&amp;quot; anyone who hasn't responded.
&lt;br&gt;&lt;br&gt;I blew away the initial import and replaced it with one with the $Id$
&lt;br&gt;tags collapsed, greatly reducing the noise in the history. &amp;nbsp;Thomas
&lt;br&gt;Adam raised a few theoretical objection but I don't think they really
&lt;br&gt;apply in our case. &amp;nbsp;If anyone (including Thomas) disagrees, let me
&lt;br&gt;know.
&lt;br&gt;&lt;br&gt;I'm going to advise we continue maintaining the changelog until we
&lt;br&gt;decide on a replacement practice. &amp;nbsp;Please write well formed commit
&lt;br&gt;messages as well (a subject line around 50 characters or less, a blank
&lt;br&gt;line, then an optional body wrapped to 72 characters).
&lt;br&gt;&lt;br&gt;If there are no substantial objections, in the next few days I'm going
&lt;br&gt;to make it official by updating any documentation I find. &amp;nbsp;I'll also
&lt;br&gt;create a CVS commit deleting everything and adding a text file
&lt;br&gt;pointing to the new repository.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tim
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18783264&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Git-migration-tp18783264p18783264.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18475191</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T14:22:37Z</published>
	<updated>2008-07-15T14:22:37Z</updated>
	<author>
		<name>Thomas Adam-3</name>
	</author>
	<content type="html">On Tue, 15 Jul 2008 17:17:15 -0400
&lt;br&gt;Tim Pope &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18475191&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; On Tue, Jul 15, 2008 at 05:11:34PM -0400, Tim Pope wrote:
&lt;br&gt;&amp;gt; &amp;gt; There's a lot of annoying $Id: ...$ chatter in the history. &amp;nbsp;I can
&lt;br&gt;&amp;gt; &amp;gt; squash them all to $Id$ to eliminate that noise if people think
&lt;br&gt;&amp;gt; &amp;gt; that's a good idea. &amp;nbsp;One of the first commits on the new repository
&lt;br&gt;&amp;gt; &amp;gt; needs to get rid of them entirely since git doesn't support it.
&lt;br&gt;&amp;gt; &amp;gt; (Do we need some sort of replacement identifier like a version
&lt;br&gt;&amp;gt; &amp;gt; number?)
&lt;br&gt;&lt;br&gt;gitattibutes allows for $id$ expansion on git checkout -- and it's
&lt;br&gt;useful when preserving history for a project migrating to GIT, for
&lt;br&gt;instance.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; Err, one more thing. &amp;nbsp;Is it worth rethinking the ChangeLog policy?
&lt;br&gt;&lt;br&gt;c.f. git shortlog to generate such a file.
&lt;br&gt;&lt;br&gt;-- Thomas Adam
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;quot;It was the cruelest game I've ever played and it's played inside my
&lt;br&gt;head.&amp;quot; -- &amp;quot;Hush The Warmth&amp;quot;, Gorky's Zygotic Mynci.
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18475191&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18475191.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18475103</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T14:17:15Z</published>
	<updated>2008-07-15T14:17:15Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Tue, Jul 15, 2008 at 05:11:34PM -0400, Tim Pope wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Okay, I've done a prototype of the import and put it on github:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://github.com/tpope/vim-ruby&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/tpope/vim-ruby&lt;/a&gt;&lt;br&gt;&amp;gt; git clone git://github.com/tpope/vim-ruby.git
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Before officially switching over, does anyone see anything wrong? &amp;nbsp;I'm
&lt;br&gt;&amp;gt; looking for things like &amp;quot;you misspelled my name&amp;quot;.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; There's a lot of annoying $Id: ...$ chatter in the history. &amp;nbsp;I can
&lt;br&gt;&amp;gt; squash them all to $Id$ to eliminate that noise if people think that's
&lt;br&gt;&amp;gt; a good idea. &amp;nbsp;One of the first commits on the new repository needs to
&lt;br&gt;&amp;gt; get rid of them entirely since git doesn't support it. &amp;nbsp;(Do we need
&lt;br&gt;&amp;gt; some sort of replacement identifier like a version number?)
&lt;/div&gt;&lt;br&gt;Err, one more thing. &amp;nbsp;Is it worth rethinking the ChangeLog policy?
&lt;br&gt;My general feeling is that the git history is so easy to work with,
&lt;br&gt;keeping a ChangeLog is no longer necessary. &amp;nbsp;But I do see value in
&lt;br&gt;consistently maintaining it throughout the projects history rather
&lt;br&gt;than switching to the SCM log halfway through. &amp;nbsp;Food for thought.
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18475103&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18475103.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18475002</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T14:11:34Z</published>
	<updated>2008-07-15T14:11:34Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Wed, Jul 16, 2008 at 05:23:22AM +1000, Doug Kearns wrote:
&lt;br&gt;&amp;gt; On Wed, Jul 16, 2008 at 3:53 AM, Tim Pope &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18475002&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;lt;snip&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I will investigate creating a git repository on Rubyforge in the near
&lt;br&gt;&amp;gt; &amp;gt; future. &amp;nbsp;Could you make me a project admin on vim-ruby?
&lt;br&gt;&lt;br&gt;Okay, I've done a prototype of the import and put it on github:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://github.com/tpope/vim-ruby&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/tpope/vim-ruby&lt;/a&gt;&lt;br&gt;git clone git://github.com/tpope/vim-ruby.git
&lt;br&gt;&lt;br&gt;Before officially switching over, does anyone see anything wrong? &amp;nbsp;I'm
&lt;br&gt;looking for things like &amp;quot;you misspelled my name&amp;quot;.
&lt;br&gt;&lt;br&gt;There's a lot of annoying $Id: ...$ chatter in the history. &amp;nbsp;I can
&lt;br&gt;squash them all to $Id$ to eliminate that noise if people think that's
&lt;br&gt;a good idea. &amp;nbsp;One of the first commits on the new repository needs to
&lt;br&gt;get rid of them entirely since git doesn't support it. &amp;nbsp;(Do we need
&lt;br&gt;some sort of replacement identifier like a version number?)
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tim
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18475002&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18475002.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18474504</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T13:43:32Z</published>
	<updated>2008-07-15T13:43:32Z</updated>
	<author>
		<name>Thomas Adam-3</name>
	</author>
	<content type="html">2008/7/15 Mark Guzman &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18474504&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;segfault@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; Afaik github is free for open source projects, they have a 100mb repo
&lt;br&gt;&amp;gt; size limit on free accts. It's only when you want private or very large
&lt;br&gt;&amp;gt; repos that payment is required.
&lt;br&gt;&lt;br&gt;Well, repo.or.cz offers 200MB for instance...
&lt;br&gt;&lt;br&gt;-- Thomas Adam
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18474504&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18474504.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18474388</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T13:37:23Z</published>
	<updated>2008-07-15T13:37:23Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Tue, Jul 15, 2008 at 04:31:42PM -0400, Mark Guzman wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;lt;(15/07/08 10:26) Tim Pope&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Mon, Jul 14, 2008 at 11:06:48PM -0400, Mark Guzman wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Hate to sound like a broken record, but I'd really like to make the
&lt;br&gt;&amp;gt; &amp;gt; move to git. &amp;nbsp;The only question I can see is who's repository will be
&lt;br&gt;&amp;gt; &amp;gt; official (assuming we use github). &amp;nbsp;I don't fancy a recurring payment
&lt;br&gt;&amp;gt; &amp;gt; for a vim-ruby github account just for this project.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; +1 to git.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Afaik github is free for open source projects, they have a 100mb repo
&lt;br&gt;&amp;gt; size limit on free accts. It's only when you want private or very large
&lt;br&gt;&amp;gt; repos that payment is required.
&lt;/div&gt;&lt;br&gt;The TOS prevent one person from having multiple free accounts. &amp;nbsp;That
&lt;br&gt;means we couldn't have a shared repository we could all push to.
&lt;br&gt;&lt;br&gt;&amp;gt; I'd assume the official repo would be at rubyforge.
&lt;br&gt;&lt;br&gt;I think that's the route we should take. &amp;nbsp;Pity that means we can't
&lt;br&gt;fully take advantage of the social aspects of github if we go that
&lt;br&gt;route but for a small project like this I guess it doesn't matter.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tim
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18474388&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18474388.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18474277</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T13:31:42Z</published>
	<updated>2008-07-15T13:31:42Z</updated>
	<author>
		<name>Mark Guzman</name>
	</author>
	<content type="html">&amp;lt;(15/07/08 10:26) Tim Pope&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 14, 2008 at 11:06:48PM -0400, Mark Guzman wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Hate to sound like a broken record, but I'd really like to make the
&lt;br&gt;&amp;gt; move to git. &amp;nbsp;The only question I can see is who's repository will be
&lt;br&gt;&amp;gt; official (assuming we use github). &amp;nbsp;I don't fancy a recurring payment
&lt;br&gt;&amp;gt; for a vim-ruby github account just for this project.
&lt;br&gt;&amp;gt; 
&lt;br&gt;+1 to git.
&lt;br&gt;&lt;br&gt;Afaik github is free for open source projects, they have a 100mb repo
&lt;br&gt;size limit on free accts. It's only when you want private or very large
&lt;br&gt;repos that payment is required.
&lt;br&gt;&lt;br&gt;I'd assume the official repo would be at rubyforge.
&lt;br&gt;&amp;nbsp; --mg
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Those the gods wish to destroy they call promising.
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18474277&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;attachment0&lt;/strong&gt; (204 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/18474277/0/attachment0&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18474277.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18472952</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T12:23:22Z</published>
	<updated>2008-07-15T12:23:22Z</updated>
	<author>
		<name>Doug Kearns</name>
	</author>
	<content type="html">On Wed, Jul 16, 2008 at 3:53 AM, Tim Pope &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18472952&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;lt;snip&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt; I will investigate creating a git repository on Rubyforge in the near
&lt;br&gt;&amp;gt; future. &amp;nbsp;Could you make me a project admin on vim-ruby?
&lt;br&gt;&lt;br&gt;Done.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Doug
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18472952&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18472952.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18471249</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T10:53:00Z</published>
	<updated>2008-07-15T10:53:00Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Wed, Jul 16, 2008 at 02:21:41AM +1000, Doug Kearns wrote:
&lt;br&gt;&amp;gt; On Wed, Jul 16, 2008 at 12:26 AM, Tim Pope &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18471249&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hate to sound like a broken record, but I'd really like to make the
&lt;br&gt;&amp;gt; &amp;gt; move to git. &amp;nbsp;The only question I can see is who's repository will be
&lt;br&gt;&amp;gt; &amp;gt; official (assuming we use github). &amp;nbsp;I don't fancy a recurring payment
&lt;br&gt;&amp;gt; &amp;gt; for a vim-ruby github account just for this project.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I certainly have no objections.
&lt;br&gt;&lt;br&gt;I will investigate creating a git repository on Rubyforge in the near
&lt;br&gt;future. &amp;nbsp;Could you make me a project admin on vim-ruby?
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tim
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18471249&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18471249.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18469337</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T09:21:41Z</published>
	<updated>2008-07-15T09:21:41Z</updated>
	<author>
		<name>Doug Kearns</name>
	</author>
	<content type="html">On Wed, Jul 16, 2008 at 12:26 AM, Tim Pope &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18469337&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;lt;snip&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;gt; Hate to sound like a broken record, but I'd really like to make the
&lt;br&gt;&amp;gt; move to git. &amp;nbsp;The only question I can see is who's repository will be
&lt;br&gt;&amp;gt; official (assuming we use github). &amp;nbsp;I don't fancy a recurring payment
&lt;br&gt;&amp;gt; for a vim-ruby github account just for this project.
&lt;br&gt;&lt;br&gt;I certainly have no objections.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Doug
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18469337&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18469337.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18469196</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T08:21:46Z</published>
	<updated>2008-07-15T08:21:46Z</updated>
	<author>
		<name>Hugh Sasse</name>
	</author>
	<content type="html">On Tue, 15 Jul 2008, Tim Pope wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; On Mon, Jul 14, 2008 at 11:06:48PM -0400, Mark Guzman wrote:
&lt;br&gt;&amp;gt;&amp;gt; As an aside, I've got the sources mirrored here:
&lt;br&gt;&amp;gt;&amp;gt; git://github.com/segfault/vim-ruby.git
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hate to sound like a broken record, but I'd really like to make the
&lt;br&gt;&amp;gt; move to git. &amp;nbsp;The only question I can see is who's repository will be
&lt;br&gt;&amp;gt; official (assuming we use github). &amp;nbsp;I don't fancy a recurring payment
&lt;br&gt;&amp;gt; for a vim-ruby github account just for this project.
&lt;br&gt;&lt;br&gt;I'm not up to speed on git, I admit, but I've seen traffic to the
&lt;br&gt;effect that Rubyforge supports it now:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://drnicwilliams.com/2008/04/08/git-for-rubyforge-accounts/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://drnicwilliams.com/2008/04/08/git-for-rubyforge-accounts/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://tomcopeland.blogs.com/juniordeveloper/2008/04/rubyforge-now-h.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tomcopeland.blogs.com/juniordeveloper/2008/04/rubyforge-now-h.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Tim
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;HTH
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Hugh
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18469196&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18469196.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18466693</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-15T07:26:16Z</published>
	<updated>2008-07-15T07:26:16Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Mon, Jul 14, 2008 at 11:06:48PM -0400, Mark Guzman wrote:
&lt;br&gt;&amp;gt; As an aside, I've got the sources mirrored here: 
&lt;br&gt;&amp;gt; git://github.com/segfault/vim-ruby.git
&lt;br&gt;&lt;br&gt;Hate to sound like a broken record, but I'd really like to make the
&lt;br&gt;move to git. &amp;nbsp;The only question I can see is who's repository will be
&lt;br&gt;official (assuming we use github). &amp;nbsp;I don't fancy a recurring payment
&lt;br&gt;for a vim-ruby github account just for this project.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Tim
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18466693&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18466693.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18457546</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-14T20:39:00Z</published>
	<updated>2008-07-14T20:39:00Z</updated>
	<author>
		<name>Mark Guzman</name>
	</author>
	<content type="html">Mark Guzman wrote:
&lt;br&gt;&amp;gt; I've had a completion project running in the background and would like 
&lt;br&gt;&amp;gt; some feedback on the overall concept. I'm spawning a ruby process per 
&lt;br&gt;&amp;gt; buffer to handle completions for that buffer. Completion uses rinda in 
&lt;br&gt;&amp;gt; the embedded ruby env to communicate with the ruby processes and 
&lt;br&gt;&amp;gt; provide a list of values.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; All of that is to get around some of the embedding flakiness that's 
&lt;br&gt;&amp;gt; come up.
&lt;br&gt;It's worth noting that I do not intend to have that dev codebase as part 
&lt;br&gt;of the upcoming release. My original message was a bit vague about that, 
&lt;br&gt;so I felt the need to clarify.
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;&amp;nbsp; --mg
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18457546&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (4K) &lt;a href=&quot;http://old.nabble.com/attachment/18457546/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18457546.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18457428</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-07-14T20:06:48Z</published>
	<updated>2008-07-14T20:06:48Z</updated>
	<author>
		<name>Mark Guzman</name>
	</author>
	<content type="html">Doug Kearns wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Mark, did you want to make those changes to rubycomplete.vim that were
&lt;br&gt;&amp;gt; suggested by Bram a week or so ago?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;Sorry I didn't reply, the maildir that I have this group going to got 
&lt;br&gt;corrupted due to a raid issue. Bram had CC'd me when it came up, so it 
&lt;br&gt;got covered that way.
&lt;br&gt;&lt;br&gt;As an aside, I've got the sources mirrored here: 
&lt;br&gt;git://github.com/segfault/vim-ruby.git
&lt;br&gt;&lt;br&gt;&lt;br&gt;I've had a completion project running in the background and would like 
&lt;br&gt;some feedback on the overall concept. I'm spawning a ruby process per 
&lt;br&gt;buffer to handle completions for that buffer. Completion uses rinda in 
&lt;br&gt;the embedded ruby env to communicate with the ruby processes and provide 
&lt;br&gt;a list of values.
&lt;br&gt;&lt;br&gt;All of that is to get around some of the embedding flakiness that's come up.
&lt;br&gt;&lt;br&gt;Thoughts...
&lt;br&gt;&amp;nbsp; --mg
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18457428&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (4K) &lt;a href=&quot;http://old.nabble.com/attachment/18457428/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18457428.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18198033</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-06-30T08:19:35Z</published>
	<updated>2008-06-30T08:19:35Z</updated>
	<author>
		<name>Tim Pope-2</name>
	</author>
	<content type="html">On Mon, Jun 30, 2008 at 11:10:03PM +1000, Doug Kearns wrote:
&lt;br&gt;&amp;gt; Tim and others,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've just sent the latest to Bram.
&lt;br&gt;&lt;br&gt;Awesome, thanks.
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18198033&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18198033.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18195318</id>
	<title>Re: Vim/Ruby release!</title>
	<published>2008-06-30T06:10:03Z</published>
	<updated>2008-06-30T06:10:03Z</updated>
	<author>
		<name>Doug Kearns</name>
	</author>
	<content type="html">Tim and others,
&lt;br&gt;&lt;br&gt;I've just sent the latest to Bram.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Doug
&lt;br&gt;_______________________________________________
&lt;br&gt;vim-ruby-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18195318&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vim-ruby-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/vim-ruby-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vim-Ruby-release%21-tp18125933p18195318.html" />
</entry>

</feed>
