<?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>评论：Emacs才是世界上最强大的IDE － 用auto-complete实现自动补全</title>
	<atom:link href="http://emacser.com/auto-complete.htm/feed" rel="self" type="application/rss+xml" />
	<link>http://emacser.com/auto-complete.htm</link>
	<description>没有我做不到的，只有你想不到的</description>
	<lastBuildDate>Fri, 18 May 2012 11:40:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>来自：Frank_Xu</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-24624</link>
		<dc:creator>Frank_Xu</dc:creator>
		<pubDate>Thu, 15 Mar 2012 17:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-24624</guid>
		<description>&lt;a href=&quot;#comment-17734&quot; rel=&quot;nofollow&quot;&gt;@阅读中&lt;/a&gt;, 
(add-to-list &#039;ac-modes &#039;coffee-mode)</description>
		<content:encoded><![CDATA[<p><a href="#comment-17734" rel="nofollow">@阅读中</a>,<br />
(add-to-list &#8216;ac-modes &#8216;coffee-mode)</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ahei</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-24441</link>
		<dc:creator>ahei</dc:creator>
		<pubDate>Tue, 13 Mar 2012 05:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-24441</guid>
		<description>&lt;a href=&quot;#comment-16883&quot; rel=&quot;nofollow&quot;&gt;@SeaCat&lt;/a&gt;, DEA中已经更新过了</description>
		<content:encoded><![CDATA[<p><a href="#comment-16883" rel="nofollow">@SeaCat</a>, DEA中已经更新过了</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ahei</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-24439</link>
		<dc:creator>ahei</dc:creator>
		<pubDate>Tue, 13 Mar 2012 05:31:04 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-24439</guid>
		<description>&lt;a href=&quot;#comment-17734&quot; rel=&quot;nofollow&quot;&gt;@阅读中&lt;/a&gt;, 在ac-modes里面添加coffee-mode</description>
		<content:encoded><![CDATA[<p><a href="#comment-17734" rel="nofollow">@阅读中</a>, 在ac-modes里面添加coffee-mode</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ahei</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-24435</link>
		<dc:creator>ahei</dc:creator>
		<pubDate>Tue, 13 Mar 2012 05:10:41 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-24435</guid>
		<description>&lt;a href=&quot;#comment-23954&quot; rel=&quot;nofollow&quot;&gt;@&lt;/a&gt;, 你在ac-modes里面添加nxml-mode了吗?</description>
		<content:encoded><![CDATA[<p><a href="#comment-23954" rel="nofollow">@</a>, 你在ac-modes里面添加nxml-mode了吗?</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：匿名</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-23954</link>
		<dc:creator>匿名</dc:creator>
		<pubDate>Tue, 06 Mar 2012 17:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-23954</guid>
		<description>ahei前辈。我在你的
(apply-args-list-to-fun
 (lambda (hook fun)
   (am-add-hooks hook fun))
 `((&#039;java-mode-hook   &#039;ac-settings-4-java)
   (&#039;c-mode-hook      &#039;ac-settings-4-c)
   (&#039;c++-mode-hook    &#039;ac-settings-4-cpp)
   (&#039;text-mode-hook   &#039;ac-settings-4-text)
   (&#039;eshell-mode-hook &#039;ac-settings-4-eshell)
   (&#039;ruby-mode-hook   &#039;ac-settings-4-ruby)
   (&#039;html-mode-hook   &#039;ac-settings-4-html)
   (&#039;awk-mode-hook    &#039;ac-settings-4-awk)
   (&#039;tcl-mode-hook    &#039;ac-settings-4-tcl)))

里添加   (&#039;nxml-mode-hook    &#039;ac-settings-4-nxml)
再添加(defun ac-settings-4-nxml ()
  (setq ac-sources
        &#039;(ac-source-yasnippet
          ac-source-abbrev
          ac-source-words-in-buffer
          ac-source-words-in-same-mode-buffers
          ac-source-files-in-current-dir
          ac-source-filename)))
为什么不能在打开xml文件的时候自动补全呀。麻烦前辈帮忙检查下。我也./install.emacs.sh了</description>
		<content:encoded><![CDATA[<p>ahei前辈。我在你的<br />
(apply-args-list-to-fun<br />
 (lambda (hook fun)<br />
   (am-add-hooks hook fun))<br />
 `((&#8216;java-mode-hook   &#8216;ac-settings-4-java)<br />
   (&#8216;c-mode-hook      &#8216;ac-settings-4-c)<br />
   (&#8216;c++-mode-hook    &#8216;ac-settings-4-cpp)<br />
   (&#8216;text-mode-hook   &#8216;ac-settings-4-text)<br />
   (&#8216;eshell-mode-hook &#8216;ac-settings-4-eshell)<br />
   (&#8216;ruby-mode-hook   &#8216;ac-settings-4-ruby)<br />
   (&#8216;html-mode-hook   &#8216;ac-settings-4-html)<br />
   (&#8216;awk-mode-hook    &#8216;ac-settings-4-awk)<br />
   (&#8216;tcl-mode-hook    &#8216;ac-settings-4-tcl)))</p>
<p>里添加   (&#8216;nxml-mode-hook    &#8216;ac-settings-4-nxml)<br />
再添加(defun ac-settings-4-nxml ()<br />
  (setq ac-sources<br />
        &#8216;(ac-source-yasnippet<br />
          ac-source-abbrev<br />
          ac-source-words-in-buffer<br />
          ac-source-words-in-same-mode-buffers<br />
          ac-source-files-in-current-dir<br />
          ac-source-filename)))<br />
为什么不能在打开xml文件的时候自动补全呀。麻烦前辈帮忙检查下。我也./install.emacs.sh了</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：阅读中</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-17734</link>
		<dc:creator>阅读中</dc:creator>
		<pubDate>Sun, 25 Dec 2011 12:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-17734</guid>
		<description>请问为什么我在 coffee-mode中无法自动打开auto-complete</description>
		<content:encoded><![CDATA[<p>请问为什么我在 coffee-mode中无法自动打开auto-complete</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：SeaCat</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-16883</link>
		<dc:creator>SeaCat</dc:creator>
		<pubDate>Sun, 18 Dec 2011 16:27:41 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-16883</guid>
		<description>auto complete 都到1.3.1了吧，@ahei 老大的这个配置文件针对新版本是不是有点不大好用了？？
require的那一串东西，只剩下头两个还在，别的好像都放到ac-dict目录下去，作为一个个的词典了。
看起来改动还蛮大的， @ahei 老大是不是该更新一下这个配置文件呢？</description>
		<content:encoded><![CDATA[<p>auto complete 都到1.3.1了吧，@ahei 老大的这个配置文件针对新版本是不是有点不大好用了？？<br />
require的那一串东西，只剩下头两个还在，别的好像都放到ac-dict目录下去，作为一个个的词典了。<br />
看起来改动还蛮大的， @ahei 老大是不是该更新一下这个配置文件呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：beyond291</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-11027</link>
		<dc:creator>beyond291</dc:creator>
		<pubDate>Wed, 27 Jul 2011 06:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-11027</guid>
		<description>请问auto complete支持使用gtags补全C/C++成员吗？
我安装了1.3.1，试了一下无法支持使用gtags补全成员。
谢谢！</description>
		<content:encoded><![CDATA[<p>请问auto complete支持使用gtags补全C/C++成员吗？<br />
我安装了1.3.1，试了一下无法支持使用gtags补全成员。<br />
谢谢！</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：tollyee</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-10947</link>
		<dc:creator>tollyee</dc:creator>
		<pubDate>Fri, 22 Jul 2011 08:02:19 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-10947</guid>
		<description>有没有 python 的补全配置呢。http://www.enigmacurry.com/2009/01/21/autocompleteel-python-code-completion-in-emacs/ 上面有一个，但是，好像对2.0不太管用</description>
		<content:encoded><![CDATA[<p>有没有 python 的补全配置呢。http://www.enigmacurry.com/2009/01/21/autocompleteel-python-code-completion-in-emacs/ 上面有一个，但是，好像对2.0不太管用</p>
]]></content:encoded>
	</item>
	<item>
		<title>来自：ahei</title>
		<link>http://emacser.com/auto-complete.htm/comment-page-4#comment-10538</link>
		<dc:creator>ahei</dc:creator>
		<pubDate>Sun, 19 Jun 2011 02:16:28 +0000</pubDate>
		<guid isPermaLink="false">http://ahei.yo2.cn/?p=34140#comment-10538</guid>
		<description>&lt;a href=&quot;#comment-10479&quot; rel=&quot;nofollow&quot;&gt;@nhabel&lt;/a&gt;, 和通常的emacs lisp包安装一样</description>
		<content:encoded><![CDATA[<p><a href="#comment-10479" rel="nofollow">@nhabel</a>, 和通常的emacs lisp包安装一样</p>
]]></content:encoded>
	</item>
</channel>
</rss>

