﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>博客园-DDLLY命名空间-最新评论</title><link>http://www.cnblogs.com/renrenqq/CommentsRSS.aspx</link><description>&lt;table width="100%" border="0"&gt;
  &lt;tr&gt;
    &lt;td&gt;&amp;nbsp;&amp;nbsp;DDLLY命名空间有两个类DDL和LLY&lt;/td&gt;
    &lt;td rowspan="3"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-3076718755126851";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="";
//--&gt;&lt;/script&gt;
      &lt;script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;</description><language>zh-cn</language><pubDate>Fri, 22 Apr 2011 07:26:53 GMT</pubDate><lastBuildDate>Fri, 22 Apr 2011 07:26:53 GMT</lastBuildDate><generator>cnblogs</generator><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077744</link><dc:creator>DDL</dc:creator><author>DDL</author><pubDate>Fri, 22 Apr 2011 05:26:53 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077744</guid><description><![CDATA[@Bughra
我使用Python version 2.7, VIM73没有碰到这个问题。
如果不想安装Python 2.7，可以试试使用用你当前Python下编译Vim。

具体过程参看
http://www.vimer.cn/2010/04/windows%E4%B8%8B%E7%BC%96%E8%AF%91vimgvim%E5%B9%B6%E5%8A%A0%E5%85%A5python2-6%E5%92%8C3-1%E6%94%AF%E6%8C%81.html<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">DDL</a> 2011-04-22 13:26 <a href="http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077744#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077715</link><dc:creator>Bughra</dc:creator><author>Bughra</author><pubDate>Fri, 22 Apr 2011 04:55:17 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077715</guid><description><![CDATA[提示:
处理 F:\Developer\Vim\vim73\plugin\VimPdb.vim 时发生错误:
第   19 行:
E370: 无法加载库 python27.dll
我安装的是 Python version 2.5.4,  VIM73。

这个问题要安装python2.7才可以解决吗？ 还有别的解决方法吗？

谢谢楼主!<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">Bughra</a> 2011-04-22 12:55 <a href="http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077715#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077450</link><dc:creator>DDL</dc:creator><author>DDL</author><pubDate>Fri, 22 Apr 2011 01:11:35 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077450</guid><description><![CDATA[@Bughra
gvimrc
&quot;snipmate for issue http://code.google.com/p/snipmate/issues/detail?id=66
&quot;source $VIMRUNTIME/after/plugin/snipMate.vim
au GUIEnter * simalt ~x 
<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">DDL</a> 2011-04-22 09:11 <a href="http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077450#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077448</link><dc:creator>DDL</dc:creator><author>DDL</author><pubDate>Fri, 22 Apr 2011 01:10:52 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077448</guid><description><![CDATA[@Bughra
&quot; 设置编码自动识别, 中文引号显示  
&quot;set fileencodings=utf-8,cp936,big5,euc-jp,euc-kr,latin1,ucs-bom  
set fileencodings=utf-8,gbk  
set ambiwidth=double  

&quot; 移动长行  
&quot;nnoremap &lt;Down&gt; gj  
&quot;nnoremap &lt;Up&gt; gk

&quot;ColorScheme
colorscheme desert

&quot; 允许退格键删除和tab操作  
set smartindent  
set smarttab  
set expandtab  
set tabstop=4  
set softtabstop=4  
set shiftwidth=4  
set backspace=2
set textwidth=79

&quot; 启用鼠标  
set mouse=a  
  
&quot; 启用行号  
set nu
set ruler

&quot;自动补全  
filetype plugin indent on
set completeopt=longest,menu
&quot;自动补全命令时候使用菜单式匹配列表  
set wildmenu
autocmd FileType ruby,eruby set omnifunc=rubycomplete#Complete
autocmd FileType python set omnifunc=pythoncomplete#Complete
autocmd FileType javascript set omnifunc=javascriptcomplete#CompleteJS
autocmd FileType html set omnifunc=htmlcomplete#CompleteTags
autocmd FileType css set omnifunc=csscomplete#CompleteCSS
autocmd FileType xml set omnifunc=xmlcomplete#CompleteTags
autocmd FileType java set omnifunc=javacomplete#Complete
autocmd FileType sql set omnifunc=sqlcomplete#Complete

&quot;Pydiction
&quot;let g:pydiction_location = &#39;C:\Program Files\Vim\vim73\ftplugin\complete-dict&#39;

&quot;tags
&quot;set tags=D:\VimTest\tags

&quot;TagList
let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1

&quot;WinManager
let g:winManagerWindowLayout=&#39;FileExplorer|TagList&#39;
nmap wm :WMToggle&lt;cr&gt;

&quot;MiniBufExplorer
let g:miniBufExplMapCTabSwitchBufs = 1
let g:miniBufExplMapWindowNavVim = 1
let g:miniBufExplMapWindowNavArrows = 1

&quot;Cscope
&quot;cs add D:\VimTest\cscope.out D:\VimTest
nmap &lt;C-_&gt;s :cs find s &lt;C-R&gt;=expand(&quot;&lt;cword&gt;&quot;)&lt;CR&gt;&lt;CR&gt;
nmap &lt;C-_&gt;g :cs find g &lt;C-R&gt;=expand(&quot;&lt;cword&gt;&quot;)&lt;CR&gt;&lt;CR&gt;
nmap &lt;C-_&gt;c :cs find c &lt;C-R&gt;=expand(&quot;&lt;cword&gt;&quot;)&lt;CR&gt;&lt;CR&gt;
nmap &lt;C-_&gt;t :cs find t &lt;C-R&gt;=expand(&quot;&lt;cword&gt;&quot;)&lt;CR&gt;&lt;CR&gt;
nmap &lt;C-_&gt;e :cs find e &lt;C-R&gt;=expand(&quot;&lt;cword&gt;&quot;)&lt;CR&gt;&lt;CR&gt;
nmap &lt;C-_&gt;f :cs find f &lt;C-R&gt;=expand(&quot;&lt;cfile&gt;&quot;)&lt;CR&gt;&lt;CR&gt;
nmap &lt;C-_&gt;i :cs find i ^&lt;C-R&gt;=expand(&quot;&lt;cfile&gt;&quot;)&lt;CR&gt;$&lt;CR&gt;
nmap &lt;C-_&gt;d :cs find d &lt;C-R&gt;=expand(&quot;&lt;cword&gt;&quot;)&lt;CR&gt;&lt;CR&gt;

&quot;cscope show in quickfix
set cscopequickfix=s-,c-,d-,i-,t-,e-

&quot;Grep
nnoremap &lt;silent&gt; &lt;F3&gt; :Grep&lt;CR&gt;

&quot;closetag
&quot;let g:closetag_html_style=1 
&quot;source C:\Program Files\Vim\vim73\scripts\closetag.vim 
&quot;au Filetype html,xml,xsl source C:\Program Files\Vim\vim73\scripts\closetag.vim

&quot;snipmate for issue http://code.google.com/p/snipmate/issues/detail?id=66
set runtimepath=~/vim_local,~/vim_local/after,$VIMRUNTIME

&quot;ZenCoding
let g:user_zen_expandabbr_key = &#39;&lt;c-e&gt;&#39;
let g:use_zen_complete_tag = 1

&quot;The NERD Tree
nmap nt :NERDTree&lt;cr&gt;
nmap ntt :NERDTreeToggle&lt;cr&gt;<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">DDL</a> 2011-04-22 09:10 <a href="http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077448#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077445</link><dc:creator>DDL</dc:creator><author>DDL</author><pubDate>Fri, 22 Apr 2011 01:09:33 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077445</guid><description><![CDATA[@gluttony
我用的是vim73+python2.7，没有发现这个问题<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">DDL</a> 2011-04-22 09:09 <a href="http://www.cnblogs.com/renrenqq/archive/2011/04/22/1813669.html#2077445#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2011/04/18/1813669.html#2074581</link><dc:creator>Bughra</dc:creator><author>Bughra</author><pubDate>Mon, 18 Apr 2011 11:33:04 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2011/04/18/1813669.html#2074581</guid><description><![CDATA[楼主能把你的 _vimrc 文件共享一下吗？<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">Bughra</a> 2011-04-18 19:33 <a href="http://www.cnblogs.com/renrenqq/archive/2011/04/18/1813669.html#2074581#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2011/03/29/1813669.html#2057586</link><dc:creator>gluttony</dc:creator><author>gluttony</author><pubDate>Tue, 29 Mar 2011 09:32:53 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2011/03/29/1813669.html#2057586</guid><description><![CDATA[请问楼主，我在win下，用的是vim72+python2.6，安装vimpdb时提示错误，说无法加载库python24.dll。有什么比较好的解决方法没有？安装vim73有效么？<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">gluttony</a> 2011-03-29 17:32 <a href="http://www.cnblogs.com/renrenqq/archive/2011/03/29/1813669.html#2057586#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:如何在windows下安装"The Eric Python IDE"</title><link>http://www.cnblogs.com/renrenqq/archive/2011/01/18/1775625.html#2013556</link><dc:creator>猫之良品</dc:creator><author>猫之良品</author><pubDate>Tue, 18 Jan 2011 07:27:13 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2011/01/18/1775625.html#2013556</guid><description><![CDATA[基于python的python IDE，真有意思。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">猫之良品</a> 2011-01-18 15:27 <a href="http://www.cnblogs.com/renrenqq/archive/2011/01/18/1775625.html#2013556#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:.NET中统一的存储过程调用方法(收藏)</title><link>http://www.cnblogs.com/renrenqq/archive/2011/01/06/14999.html#2005266</link><dc:creator>转角空</dc:creator><author>转角空</author><pubDate>Thu, 06 Jan 2011 13:23:39 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2011/01/06/14999.html#2005266</guid><description><![CDATA[学习下……感谢<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">转角空</a> 2011-01-06 21:23 <a href="http://www.cnblogs.com/renrenqq/archive/2011/01/06/14999.html#2005266#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2010/12/14/1813669.html#1987686</link><dc:creator>dartagnan</dc:creator><author>dartagnan</author><pubDate>Tue, 14 Dec 2010 13:58:16 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2010/12/14/1813669.html#1987686</guid><description><![CDATA[不错，支持一个！<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">dartagnan</a> 2010-12-14 21:58 <a href="http://www.cnblogs.com/renrenqq/archive/2010/12/14/1813669.html#1987686#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:自动代码生成器</title><link>http://www.cnblogs.com/renrenqq/archive/2010/12/01/37986.html#1973830</link><dc:creator>水淼</dc:creator><author>水淼</author><pubDate>Wed, 01 Dec 2010 01:34:54 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2010/12/01/37986.html#1973830</guid><description><![CDATA[能不能也发给我一个分啊，756714996@qq.com谢谢了<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">水淼</a> 2010-12-01 09:34 <a href="http://www.cnblogs.com/renrenqq/archive/2010/12/01/37986.html#1973830#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:浅析C#的事件处理和自定义事件</title><link>http://www.cnblogs.com/renrenqq/archive/2010/10/13/10376.html#1933665</link><dc:creator>iPeterRex</dc:creator><author>iPeterRex</author><pubDate>Wed, 13 Oct 2010 04:04:27 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2010/10/13/10376.html#1933665</guid><description><![CDATA[楼主这篇文章很好。一直搞不清楚什么是事件，通过这篇文章，我对事件有了基本的认识。<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">iPeterRex</a> 2010-10-13 12:04 <a href="http://www.cnblogs.com/renrenqq/archive/2010/10/13/10376.html#1933665#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2010/09/10/1813669.html#1913215</link><dc:creator>DDL</dc:creator><author>DDL</author><pubDate>Fri, 10 Sep 2010 02:06:42 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2010/09/10/1813669.html#1913215</guid><description><![CDATA[@路西菲尔
1.vim不同的版本对对应的是不同版本的python,我用的vim73对应的是python2.7，好像vim73也支持3.0。
2.NERDTree我也看了，功能是很强大，我准备在以后的写blog介绍，现在用这个比较简单易懂。
3.neocomplcache没有过，有时间研究下，谢谢提供这个插件
4.snippet插件我在用SnipMate。xptemplate没有研究过，有时间看看。不知道哪个更好。

你用vim经验很丰富嘛。有机会多交流<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">DDL</a> 2010-09-10 10:06 <a href="http://www.cnblogs.com/renrenqq/archive/2010/09/10/1813669.html#1913215#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2010/09/10/1813669.html#1913184</link><dc:creator>路西菲尔</dc:creator><author>路西菲尔</author><pubDate>Fri, 10 Sep 2010 01:52:16 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2010/09/10/1813669.html#1913184</guid><description><![CDATA[补充一下：
1.默认安装的vim对应的python是2.4版本，如果本机装了2.6或者3.0，还是下载个vim源码重新make一下
2.winmanager自带的那个FileExplorer很难用，建议换成NERDTree，这样也就不需要MiniBufExplorer了
3.pydiction这东西充其量就是词典补全，除了在import的时候提示下，基本没什么用，而且开发django时也无法对自定义的model进行提示。建议使用neocomplcache，速度快，自动弹出，而且不需要写
autocmd FileType ruby,eruby set omnifunc=rubycomplete#Completeautocmd FileType python 这堆东西了
4.snippet插件应该用一个，我觉得xptemplate很不错<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">路西菲尔</a> 2010-09-10 09:52 <a href="http://www.cnblogs.com/renrenqq/archive/2010/09/10/1813669.html#1913184#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Re:Vim as Python IDE on windows</title><link>http://www.cnblogs.com/renrenqq/archive/2010/09/10/1813669.html#1913158</link><dc:creator>DDL</dc:creator><author>DDL</author><pubDate>Fri, 10 Sep 2010 01:30:10 GMT</pubDate><guid>http://www.cnblogs.com/renrenqq/archive/2010/09/10/1813669.html#1913158</guid><description><![CDATA[@追逐好梦
wm是直接输入的，不是:wm，你试试<br><br><div align=right><a style="text-decoration:none;" href="http://www.cnblogs.com/renrenqq/" target="_blank">DDL</a> 2010-09-10 09:30 <a href="http://www.cnblogs.com/renrenqq/archive/2010/09/10/1813669.html#1913158#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>
