<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>《vi/vim使用进阶: 使用会话和viminfo》的评论</title>
	<atom:link href="http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/feed/" rel="self" type="application/rss+xml" />
	<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/</link>
	<description>关注Linux, Scala, Android, Java, 开源软件和嵌入式系统</description>
	<lastBuildDate>Mon, 14 May 2012 09:51:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>作者：Easwy</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-10101</link>
		<dc:creator>Easwy</dc:creator>
		<pubDate>Wed, 24 Aug 2011 06:27:48 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-10101</guid>
		<description>要把插件整合进WinManager窗口中，需要插件实现一些接口的。印象中NERDTree和miniBufExplorer是没有实现这些接口的，所以应该无法用WinManager插件管理</description>
		<content:encoded><![CDATA[<p>要把插件整合进WinManager窗口中，需要插件实现一些接口的。印象中NERDTree和miniBufExplorer是没有实现这些接口的，所以应该无法用WinManager插件管理</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Easwy</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-10100</link>
		<dc:creator>Easwy</dc:creator>
		<pubDate>Wed, 24 Aug 2011 06:24:58 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-10100</guid>
		<description>我不经常用miniBuffer插件，你读一下它的帮助文件吧</description>
		<content:encoded><![CDATA[<p>我不经常用miniBuffer插件，你读一下它的帮助文件吧</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：rbsrcy</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-10091</link>
		<dc:creator>rbsrcy</dc:creator>
		<pubDate>Tue, 23 Aug 2011 15:03:17 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-10091</guid>
		<description>我想把vim插件中的miniBufExplorer和NERDTree，TagList整合起来所以加了let g:winManagerWindowLayout=&quot;NERDTree&#124;TagList&#124;miniBufExpl&quot;
map  :WMToggle
可是按下F3后NERDTree&#124;TagList可以正常打开，而minibufExplorer无法打开提示说：是找不到这个插件
我的.vimrc的部分配置如下：
let g:miniBufExplMapWindowNavVim = 1
207 let g:miniBufExplMapWindowNavArrows = 1
208 let g:miniBufExplMapCTabSwitchBufs = 1
209 let g:miniBufExplModSelTarget = 1
210 let g:miniBufExplMoreThanOne=0
211 
212 let g:NERDTree_title=&quot;[NERDTree]&quot;
213 let g:winManagerWindowLayout=&quot;NERDTree&#124;TagList&#124;miniBufExpl&quot;
214   
215 function! NERDTree_Start() 
216      exec &#039;NERDTree&#039; 
217 endfunction 
218   
219 function! NERDTree_IsValid() 
220      return 1 
221 endfunction 
222   
223 map  :WMToggle
求高手指教</description>
		<content:encoded><![CDATA[<p>我想把vim插件中的miniBufExplorer和NERDTree，TagList整合起来所以加了let g:winManagerWindowLayout=”NERDTree|TagList|miniBufExpl”<br />
map  :WMToggle<br />
可是按下F3后NERDTree|TagList可以正常打开，而minibufExplorer无法打开提示说：是找不到这个插件<br />
我的.vimrc的部分配置如下：<br />
let g:miniBufExplMapWindowNavVim = 1<br />
207 let g:miniBufExplMapWindowNavArrows = 1<br />
208 let g:miniBufExplMapCTabSwitchBufs = 1<br />
209 let g:miniBufExplModSelTarget = 1<br />
210 let g:miniBufExplMoreThanOne=0<br />
211<br />
212 let g:NERDTree_title=”[NERDTree]”<br />
213 let g:winManagerWindowLayout=”NERDTree|TagList|miniBufExpl”<br />
214<br />
215 function! NERDTree_Start()<br />
216      exec &#8216;NERDTree&#8217;<br />
217 endfunction<br />
218<br />
219 function! NERDTree_IsValid()<br />
220      return 1<br />
221 endfunction<br />
222<br />
223 map  :WMToggle<br />
求高手指教</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：rbsrcy</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-10088</link>
		<dc:creator>rbsrcy</dc:creator>
		<pubDate>Tue, 23 Aug 2011 13:55:48 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-10088</guid>
		<description>请教楼主如何关闭动态窗口miniBufExplorer？我试了：q 还有菜单的close也没关掉它</description>
		<content:encoded><![CDATA[<p>请教楼主如何关闭动态窗口miniBufExplorer？我试了：q 还有菜单的close也没关掉它</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Easwy</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-9953</link>
		<dc:creator>Easwy</dc:creator>
		<pubDate>Wed, 17 Aug 2011 02:27:14 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-9953</guid>
		<description>&lt;a href=&quot;#comment-9919&quot; rel=&quot;nofollow&quot;&gt;@ggchangan &lt;/a&gt; 
我在win7下没有这样的错误，是不是你没有权限写入这个目录？</description>
		<content:encoded><![CDATA[<p><a href="#comment-9919" rel="nofollow">@ggchangan </a><br />
我在win7下没有这样的错误，是不是你没有权限写入这个目录？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Easwy</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-9952</link>
		<dc:creator>Easwy</dc:creator>
		<pubDate>Wed, 17 Aug 2011 02:24:23 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-9952</guid>
		<description>&lt;a href=&quot;#comment-7856&quot; rel=&quot;nofollow&quot;&gt;@barbypie &lt;/a&gt; 
看错误提示，你应该是在shell里执行这个命令吧？这是个vim命令，需要在vim中执行，还有，如果在vim中执行&quot;:!mksession [file]&quot;也会有这个错误提示，正确的用法是&quot;:mksession [file]&quot;</description>
		<content:encoded><![CDATA[<p><a href="#comment-7856" rel="nofollow">@barbypie </a><br />
看错误提示，你应该是在shell里执行这个命令吧？这是个vim命令，需要在vim中执行，还有，如果在vim中执行”:!mksession [file]“也会有这个错误提示，正确的用法是”:mksession [file]“</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：ggchangan</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-9919</link>
		<dc:creator>ggchangan</dc:creator>
		<pubDate>Mon, 15 Aug 2011 10:52:13 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-9919</guid>
		<description>非常感谢博主!!
我在win7下使用gvim.编辑$vim/_vimrc文件，总是提示readonly,虽然在保存时使用！强制保存，总也保存不上。我该怎样处理，才能编辑$vim/_vimrc呢？</description>
		<content:encoded><![CDATA[<p>非常感谢博主!!<br />
我在win7下使用gvim.编辑$vim/_vimrc文件，总是提示readonly,虽然在保存时使用！强制保存，总也保存不上。我该怎样处理，才能编辑$vim/_vimrc呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：barbypie</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-7856</link>
		<dc:creator>barbypie</dc:creator>
		<pubDate>Wed, 04 May 2011 09:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-7856</guid>
		<description>你好博主，我刚刚接触Linux和Vim。 想请教一下，我运行 mksession [file] 后，提示： -bash: mksession: command not foud 。 应该如何处理？ 多谢多谢！</description>
		<content:encoded><![CDATA[<p>你好博主，我刚刚接触Linux和Vim。 想请教一下，我运行 mksession [file] 后，提示： -bash: mksession: command not foud 。 应该如何处理？ 多谢多谢！</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：ilstar</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-7305</link>
		<dc:creator>ilstar</dc:creator>
		<pubDate>Wed, 30 Mar 2011 03:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-7305</guid>
		<description>用vim一年了，才知道这个功能，感谢+羞愧中

确实非常实用，嘿嘿</description>
		<content:encoded><![CDATA[<p>用vim一年了，才知道这个功能，感谢+羞愧中</p>
<p>确实非常实用，嘿嘿</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：dedekd</title>
		<link>http://easwy.com/blog/archives/advanced-vim-skills-session-file-and-viminfo/#comment-5269</link>
		<dc:creator>dedekd</dc:creator>
		<pubDate>Wed, 17 Nov 2010 07:33:17 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?p=48#comment-5269</guid>
		<description>&lt;a href=&quot;#comment-5255&quot; rel=&quot;nofollow&quot;&gt;@Easwy &lt;/a&gt; 
谢谢博主，我试试</description>
		<content:encoded><![CDATA[<p><a href="#comment-5255" rel="nofollow">@Easwy </a><br />
谢谢博主，我试试</p>
]]></content:encoded>
	</item>
</channel>
</rss>

