<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Python with a modular IDE (Vim)</title>
	<atom:link href="http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/</link>
	<description>Use a pencil, lets not build another space pen.</description>
	<pubDate>Wed, 23 Jul 2008 17:34:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: trespams.com</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1832</link>
		<dc:creator>trespams.com</dc:creator>
		<pubDate>Tue, 22 Jul 2008 18:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1832</guid>
		<description>&lt;strong&gt;vim ide per python...&lt;/strong&gt;


Aquesta setmana i gràcies a l'entrada del blog de sontek he retornat al vi com a editor principal per a la programació en Python.

Periòdicament estic canviant entre vim, kate o Eclipse amb PyDev, se...</description>
		<content:encoded><![CDATA[<p><strong>vim ide per python&#8230;</strong></p>
<p>Aquesta setmana i gràcies a l&#8217;entrada del blog de sontek he retornat al vi com a editor principal per a la programació en Python.</p>
<p>Periòdicament estic canviant entre vim, kate o Eclipse amb PyDev, se&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan Ven Osdel</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1815</link>
		<dc:creator>Ivan Ven Osdel</dc:creator>
		<pubDate>Mon, 21 Jul 2008 13:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1815</guid>
		<description>Thanks! I use this every day! Perhaps someone will want to make a setup script or install package for this?</description>
		<content:encoded><![CDATA[<p>Thanks! I use this every day! Perhaps someone will want to make a setup script or install package for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1779</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Wed, 16 Jul 2008 13:50:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1779</guid>
		<description>Also, for pydoc

map  pWW :call ShowPyDoc('[C-R][C-A]', 1)[CR]

with square brackets replaced by angle brackets.  (test: &#60;foo&#62;)</description>
		<content:encoded><![CDATA[<p>Also, for pydoc</p>
<p>map  pWW :call ShowPyDoc(&#8217;[C-R][C-A]&#8216;, 1)[CR]</p>
<p>with square brackets replaced by angle brackets.  (test: &lt;foo&gt;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1778</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Wed, 16 Jul 2008 13:48:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1778</guid>
		<description>Oops. The comments ate up my angle brackets. The remap is from Nul to C-space.

You need a preview feature. :-)</description>
		<content:encoded><![CDATA[<p>Oops. The comments ate up my angle brackets. The remap is from Nul to C-space.</p>
<p>You need a preview feature. <img src='http://blog.sontek.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1777</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Wed, 16 Jul 2008 13:47:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1777</guid>
		<description>This was really helpful, thanks!

I had a couple of issues, possibly related to Windows, that I'll list in case it helps anyone:

The binding "inoremap  " didn't have an effect when I used CTRL+Space, but changing  to  did the trick.

Using pW from pydoc.vim works with your example of 

print os.path.abspath("~/_vimrc")

but fails on 

print os.path.abspath('~/.vimrc')

I managed to figure out that this was because of single/double quoting issues when the contents are passed to the PyDoc function. I'm new to vim and after banging my head for a while, I could only come up with the following workaround:

map  pWW :call ShowPyDoc("", 1) 

Now I use pWW when my "WORD" has single quotes.  Not great, but it works. :)

Thanks again.</description>
		<content:encoded><![CDATA[<p>This was really helpful, thanks!</p>
<p>I had a couple of issues, possibly related to Windows, that I&#8217;ll list in case it helps anyone:</p>
<p>The binding &#8220;inoremap  &#8221; didn&#8217;t have an effect when I used CTRL+Space, but changing  to  did the trick.</p>
<p>Using pW from pydoc.vim works with your example of </p>
<p>print os.path.abspath(&#8221;~/_vimrc&#8221;)</p>
<p>but fails on </p>
<p>print os.path.abspath(&#8217;~/.vimrc&#8217;)</p>
<p>I managed to figure out that this was because of single/double quoting issues when the contents are passed to the PyDoc function. I&#8217;m new to vim and after banging my head for a while, I could only come up with the following workaround:</p>
<p>map  pWW :call ShowPyDoc(&#8221;", 1) </p>
<p>Now I use pWW when my &#8220;WORD&#8221; has single quotes.  Not great, but it works. <img src='http://blog.sontek.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Me</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1756</link>
		<dc:creator>Me</dc:creator>
		<pubDate>Sun, 13 Jul 2008 10:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1756</guid>
		<description>There is a typo in your .vimrc line 115:

au FileType python if &#38;ft !~ 'django' &#124; setlocal filetype=python.django_tempate.django_model &#124; endif

Anyhow I would change it to:

au FileType python if &#38;ft !~ 'django' &#124; setlocal filetype=python.django_model &#124; endif
au FileType html if &#38;ft !~ 'django' &#124; setlocal filetype=html.django_template &#124; endif</description>
		<content:encoded><![CDATA[<p>There is a typo in your .vimrc line 115:</p>
<p>au FileType python if &amp;ft !~ &#8216;django&#8217; | setlocal filetype=python.django_tempate.django_model | endif</p>
<p>Anyhow I would change it to:</p>
<p>au FileType python if &amp;ft !~ &#8216;django&#8217; | setlocal filetype=python.django_model | endif<br />
au FileType html if &amp;ft !~ &#8216;django&#8217; | setlocal filetype=html.django_template | endif</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark dufour</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1659</link>
		<dc:creator>mark dufour</dc:creator>
		<pubDate>Fri, 04 Jul 2008 11:50:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1659</guid>
		<description>I like to control a running IPython using VIM shortcuts, but this can be used to control any other terminal:

http://vim.wikia.com/wiki/IPython_integration</description>
		<content:encoded><![CDATA[<p>I like to control a running IPython using VIM shortcuts, but this can be used to control any other terminal:</p>
<p><a href="http://vim.wikia.com/wiki/IPython_integration" rel="nofollow">http://vim.wikia.com/wiki/IPython_integration</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen Ruigrok van der Werven</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1658</link>
		<dc:creator>Jeroen Ruigrok van der Werven</dc:creator>
		<pubDate>Fri, 04 Jul 2008 09:29:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1658</guid>
		<description>I actually do not have to set omnifunc for my Python setup to get CTRL-X CTRL-O to work. Only for CSS do I need to due to the defacto #Complete being named #CompleteCSS there.</description>
		<content:encoded><![CDATA[<p>I actually do not have to set omnifunc for my Python setup to get CTRL-X CTRL-O to work. Only for CSS do I need to due to the defacto #Complete being named #CompleteCSS there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bignose</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1654</link>
		<dc:creator>bignose</dc:creator>
		<pubDate>Fri, 04 Jul 2008 07:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1654</guid>
		<description>Nice article, thank you. Some tweaks:

“Dalai LLama” should be “Dalai Lama”.

The second invocation of “python &#60;&#60;” should be “python &#60;&#60; EOF” (and the end delimiter corrected to “EOF” also), like the first.

And thanks for giving a reference to equal coverage for Emacs :-)</description>
		<content:encoded><![CDATA[<p>Nice article, thank you. Some tweaks:</p>
<p>“Dalai LLama” should be “Dalai Lama”.</p>
<p>The second invocation of “python &lt;&lt;” should be “python &lt;&lt; EOF” (and the end delimiter corrected to “EOF” also), like the first.</p>
<p>And thanks for giving a reference to equal coverage for Emacs <img src='http://blog.sontek.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sontek</title>
		<link>http://blog.sontek.net/2008/05/11/python-with-a-modular-ide-vim/#comment-1567</link>
		<dc:creator>sontek</dc:creator>
		<pubDate>Wed, 02 Jul 2008 18:47:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sontek.net/?p=30#comment-1567</guid>
		<description>I've resubmitted the download link, sorry about that guys</description>
		<content:encoded><![CDATA[<p>I&#8217;ve resubmitted the download link, sorry about that guys</p>
]]></content:encoded>
	</item>
</channel>
</rss>
