<?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>《关于》的评论</title>
	<atom:link href="http://easwy.com/blog/about/feed/" rel="self" type="application/rss+xml" />
	<link>http://easwy.com/blog</link>
	<description>关注Linux, Scala, Android, Java, 开源软件和嵌入式系统</description>
	<lastBuildDate>Tue, 31 Jan 2012 02:52:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>作者：ccheng</title>
		<link>http://easwy.com/blog/about/#comment-12587</link>
		<dc:creator>ccheng</dc:creator>
		<pubDate>Fri, 09 Dec 2011 07:06:33 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-12587</guid>
		<description>博主问个问题。
andorid编译的时候输出是这样子的：

compile:
    [javac] /home/ccheng/program/predecate_android_sdk/tools/ant/main_rules.xml:384: warning: &#039;includeantruntime&#039; was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
    [javac] Compiling 2 source files to /home/ccheng/workspace_helio/android_test/bin/classes
    [javac] MyApplication.java:11: not a statement
    [javac] 		aadfasdf
    [javac] 		^
    [javac] MyApplication.java:11: &#039;;&#039; expected
    [javac] 		aadfasdf
    [javac] 		        ^
    [javac] 2 errors
但是我把vim里面的errorformat设置成帮助文档里面的errorformat-ant之后还是找不到MyApplication.java，我估计是因为这个是相对路径的原因。
当前目录实在“.&quot;,MyApplication.java的目录在于&quot;./src/com/test&quot;请问有什么办法可以解决这个问题吗？谢谢</description>
		<content:encoded><![CDATA[<p>博主问个问题。<br />
andorid编译的时候输出是这样子的：</p>
<p>compile:<br />
    [javac] /home/ccheng/program/predecate_android_sdk/tools/ant/main_rules.xml:384: warning: &#8216;includeantruntime&#8217; was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds<br />
    [javac] Compiling 2 source files to /home/ccheng/workspace_helio/android_test/bin/classes<br />
    [javac] MyApplication.java:11: not a statement<br />
    [javac] 		aadfasdf<br />
    [javac] 		^<br />
    [javac] MyApplication.java:11: &#8216;;&#8217; expected<br />
    [javac] 		aadfasdf<br />
    [javac] 		        ^<br />
    [javac] 2 errors<br />
但是我把vim里面的errorformat设置成帮助文档里面的errorformat-ant之后还是找不到MyApplication.java，我估计是因为这个是相对路径的原因。<br />
当前目录实在“.”,MyApplication.java的目录在于”./src/com/test”请问有什么办法可以解决这个问题吗？谢谢</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：小Don</title>
		<link>http://easwy.com/blog/about/#comment-11574</link>
		<dc:creator>小Don</dc:creator>
		<pubDate>Tue, 25 Oct 2011 06:55:30 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-11574</guid>
		<description>博主好！
可以留个联系方式到我的邮箱么～
我还在大学学统计，但是我个人对一些关于编程的东西很感兴趣，包括Vim,Linux,以及github,PHP等的使用。
而且最近也想像博主那样自己做一个博客出来～
可以给我点详细的文献或者指导么？</description>
		<content:encoded><![CDATA[<p>博主好！<br />
可以留个联系方式到我的邮箱么～<br />
我还在大学学统计，但是我个人对一些关于编程的东西很感兴趣，包括Vim,Linux,以及github,PHP等的使用。<br />
而且最近也想像博主那样自己做一个博客出来～<br />
可以给我点详细的文献或者指导么？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Easwy</title>
		<link>http://easwy.com/blog/about/#comment-10979</link>
		<dc:creator>Easwy</dc:creator>
		<pubDate>Mon, 10 Oct 2011 04:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-10979</guid>
		<description>这个问题的确比较头疼，如果匹配太多，我通常是直接找开定义class的源文件，然后在里面搜索函数定义</description>
		<content:encoded><![CDATA[<p>这个问题的确比较头疼，如果匹配太多，我通常是直接找开定义class的源文件，然后在里面搜索函数定义</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：dlmu2001</title>
		<link>http://easwy.com/blog/about/#comment-10730</link>
		<dc:creator>dlmu2001</dc:creator>
		<pubDate>Sat, 24 Sep 2011 02:48:47 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-10730</guid>
		<description>你好，我在用tag的时候有一个问题，就是它只匹配函数，不匹配类，比如一个类Note有个函数set,Note::set，用ctag的时候，会把所有set函数的定义找出来，比如AClass::set,BClass::set，这在大项目的时候是个问题，请问你是怎么解决这个问题的。</description>
		<content:encoded><![CDATA[<p>你好，我在用tag的时候有一个问题，就是它只匹配函数，不匹配类，比如一个类Note有个函数set,Note::set，用ctag的时候，会把所有set函数的定义找出来，比如AClass::set,BClass::set，这在大项目的时候是个问题，请问你是怎么解决这个问题的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：wowdd1</title>
		<link>http://easwy.com/blog/about/#comment-7519</link>
		<dc:creator>wowdd1</dc:creator>
		<pubDate>Fri, 15 Apr 2011 01:58:30 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-7519</guid>
		<description>博主能留个联系方式到我邮箱么</description>
		<content:encoded><![CDATA[<p>博主能留个联系方式到我邮箱么</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Andrux</title>
		<link>http://easwy.com/blog/about/#comment-7261</link>
		<dc:creator>Andrux</dc:creator>
		<pubDate>Sat, 26 Mar 2011 08:47:35 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-7261</guid>
		<description>感谢博主的一系列文章，在你这我得到了很多自己想要的信息（这样的博客才是黑客的博客），同时我也发现我距离一个真的开发者还差得远。目前，接触Linux已经半年，想学Android。现在正在学习Vim的使用，你的Vim使用进阶对我帮助很大，再次感谢你的自由和奉献精神。</description>
		<content:encoded><![CDATA[<p>感谢博主的一系列文章，在你这我得到了很多自己想要的信息（这样的博客才是黑客的博客），同时我也发现我距离一个真的开发者还差得远。目前，接触Linux已经半年，想学Android。现在正在学习Vim的使用，你的Vim使用进阶对我帮助很大，再次感谢你的自由和奉献精神。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：atom</title>
		<link>http://easwy.com/blog/about/#comment-6813</link>
		<dc:creator>atom</dc:creator>
		<pubDate>Thu, 17 Feb 2011 14:53:29 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-6813</guid>
		<description>&lt;a href=&quot;#comment-6702&quot; rel=&quot;nofollow&quot;&gt;@Easwy &lt;/a&gt; 
这样子不行。

我已经解决了。
http://www.linuxsir.org/bbs/showthread.php?p=2128293</description>
		<content:encoded><![CDATA[<p><a href="#comment-6702" rel="nofollow">@Easwy </a><br />
这样子不行。</p>
<p>我已经解决了。<br />
<a href="http://www.linuxsir.org/bbs/showthread.php?p=2128293" rel="nofollow">http://www.linuxsir.org/bbs/showthread.php?p=2128293</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Easwy</title>
		<link>http://easwy.com/blog/about/#comment-6702</link>
		<dc:creator>Easwy</dc:creator>
		<pubDate>Fri, 11 Feb 2011 08:04:55 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-6702</guid>
		<description>&lt;a href=&quot;#comment-6695&quot; rel=&quot;nofollow&quot;&gt;@atom &lt;/a&gt; 
试试这个命令：

 vim  -c &quot;TOhtml&quot; -c &quot;wqa&quot; ex2.sh

或者编辑一个文件script，内容为：
:TOhtml
:write
:qall

然后用命令：
vim -s script ex2.sh</description>
		<content:encoded><![CDATA[<p><a href="#comment-6695" rel="nofollow">@atom </a><br />
试试这个命令：</p>
<p> vim  -c “TOhtml” -c “wqa” ex2.sh</p>
<p>或者编辑一个文件script，内容为：<br />
:TOhtml<br />
:write<br />
:qall</p>
<p>然后用命令：<br />
vim -s script ex2.sh</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：atom</title>
		<link>http://easwy.com/blog/about/#comment-6695</link>
		<dc:creator>atom</dc:creator>
		<pubDate>Thu, 10 Feb 2011 17:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-6695</guid>
		<description>博主你好：

有一个问题困扰我有点久了，可能是关键字选的不当的缘故，在google上也没有找到满意的答案。想起reader里面有订阅你的博客，就来请教你啦。

vim的TOHtml插件，可以生成带有语法高亮的html文件。我想在shell脚本中执行vim，“批量”将源码文件生成对应的html文件。
我在终端中执行：
$ vim -e ex2.sh &lt; change.vim

ex2.sh是一个shell脚本

change.vim内容如下
$ cat change.vim
TOhtml
write ex2.html
quit!
quit!

我的本意是使用vim的Ex模式，将ex2.sh用TOhtml转换为带语法高亮的ex2.html。
在change.vim中写入Normal模式下的操作。
但是生成的ex2.html内容和ex2.sh一模一样，连html标签都没有。

如何在shell脚本中执行TOhtml插件呢？</description>
		<content:encoded><![CDATA[<p>博主你好：</p>
<p>有一个问题困扰我有点久了，可能是关键字选的不当的缘故，在google上也没有找到满意的答案。想起reader里面有订阅你的博客，就来请教你啦。</p>
<p>vim的TOHtml插件，可以生成带有语法高亮的html文件。我想在shell脚本中执行vim，“批量”将源码文件生成对应的html文件。<br />
我在终端中执行：<br />
$ vim -e ex2.sh &lt; change.vim</p>
<p>ex2.sh是一个shell脚本</p>
<p>change.vim内容如下<br />
$ cat change.vim<br />
TOhtml<br />
write ex2.html<br />
quit!<br />
quit!</p>
<p>我的本意是使用vim的Ex模式，将ex2.sh用TOhtml转换为带语法高亮的ex2.html。<br />
在change.vim中写入Normal模式下的操作。<br />
但是生成的ex2.html内容和ex2.sh一模一样，连html标签都没有。</p>
<p>如何在shell脚本中执行TOhtml插件呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：Easwy</title>
		<link>http://easwy.com/blog/about/#comment-6042</link>
		<dc:creator>Easwy</dc:creator>
		<pubDate>Thu, 13 Jan 2011 01:12:08 +0000</pubDate>
		<guid isPermaLink="false">http://easwy.com/blog/?page_id=7#comment-6042</guid>
		<description>&lt;a href=&quot;#comment-6018&quot; rel=&quot;nofollow&quot;&gt;@左言 &lt;/a&gt; 
不是</description>
		<content:encoded><![CDATA[<p><a href="#comment-6018" rel="nofollow">@左言 </a><br />
不是</p>
]]></content:encoded>
	</item>
</channel>
</rss>

