<?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>Comments on: Find files faster with the recent files package</title>
	<atom:link href="http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/</link>
	<description>a blog about mastering the world&#039;s best text editor</description>
	<lastBuildDate>Fri, 17 May 2013 21:26:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jay</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-22233</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Fri, 15 Feb 2013 03:19:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-22233</guid>
		<description><![CDATA[Is there a way to make it so the list of recent files does NOT show the filepath, but just the filename itself?]]></description>
		<content:encoded><![CDATA[<p>Is there a way to make it so the list of recent files does NOT show the filepath, but just the filename itself?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iceman</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-15131</link>
		<dc:creator>iceman</dc:creator>
		<pubDate>Thu, 20 Sep 2012 16:20:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-15131</guid>
		<description><![CDATA[i think i didn&#039;t need the ido-recentf-open,because ido will do this,when i typing some filename under very deep directory,ido will auto match it,if i have recently open that file?isn&#039;t this a convetion?]]></description>
		<content:encoded><![CDATA[<p>i think i didn&#8217;t need the ido-recentf-open,because ido will do this,when i typing some filename under very deep directory,ido will auto match it,if i have recently open that file?isn&#8217;t this a convetion?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Rodriguez</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-472</link>
		<dc:creator>Paul Rodriguez</dc:creator>
		<pubDate>Fri, 11 Feb 2011 01:22:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-472</guid>
		<description><![CDATA[I used to use a similar Ido-based solution:

(find-file-existing 
 (ido-completing-read 
  &quot;Recent file: &quot;
  (mapcar &#039;abbreviate-file-name recentf-list)
  nil t))

But now I just use `recentf-open-files&#039;, which is even more convenient.]]></description>
		<content:encoded><![CDATA[<p>I used to use a similar Ido-based solution:</p>
<p>(find-file-existing<br />
 (ido-completing-read<br />
  &#8220;Recent file: &#8221;<br />
  (mapcar &#8216;abbreviate-file-name recentf-list)<br />
  nil t))</p>
<p>But now I just use `recentf-open-files&#8217;, which is even more convenient.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan McGuirk</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-459</link>
		<dc:creator>Dan McGuirk</dc:creator>
		<pubDate>Wed, 09 Feb 2011 15:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-459</guid>
		<description><![CDATA[There is something in ido-mode that does something similar already.  Press C-x C-f, type the file name (even though you&#039;re in the wrong directory), wait a second and it pops up the correct directory (it has its own cache separate from recentf).

Of course, this version might still work better.]]></description>
		<content:encoded><![CDATA[<p>There is something in ido-mode that does something similar already.  Press C-x C-f, type the file name (even though you&#8217;re in the wrong directory), wait a second and it pops up the correct directory (it has its own cache separate from recentf).</p>
<p>Of course, this version might still work better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mickey</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-408</link>
		<dc:creator>mickey</dc:creator>
		<pubDate>Fri, 28 Jan 2011 09:10:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-408</guid>
		<description><![CDATA[Ahh, yes. Excellent observation. I suppose I should point that out. I do recommend you read my article Introduction to Ido Mode. I think you&#039;ll find it useful.]]></description>
		<content:encoded><![CDATA[<p>Ahh, yes. Excellent observation. I suppose I should point that out. I do recommend you read my article Introduction to Ido Mode. I think you&#8217;ll find it useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: visitor</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-406</link>
		<dc:creator>visitor</dc:creator>
		<pubDate>Fri, 28 Jan 2011 06:08:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-406</guid>
		<description><![CDATA[There is yet another approach which provides normal file opening while oferring completions from the recentf list at the same time:

http://www.emacswiki.org/emacs/PushyCompletion]]></description>
		<content:encoded><![CDATA[<p>There is yet another approach which provides normal file opening while oferring completions from the recentf list at the same time:</p>
<p><a href="http://www.emacswiki.org/emacs/PushyCompletion" rel="nofollow">http://www.emacswiki.org/emacs/PushyCompletion</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rcy</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-404</link>
		<dc:creator>rcy</dc:creator>
		<pubDate>Thu, 27 Jan 2011 22:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-404</guid>
		<description><![CDATA[This is Great.  Thanks.

One thing.  I have ignored ido mode for a long time, being happy with my trusty iswitchb-mode.  I pasted your code above into my .emacs, evalled, and hit C-x C-r.  Completion did not work.  I needed to hit C-] to escape from the minibuffer.

Adding (ido-mode t) to my .emacs solved the problem.

Just wanted to point that out, in case other users not (yet) using ido try your snippet.

Cheers,
rcy]]></description>
		<content:encoded><![CDATA[<p>This is Great.  Thanks.</p>
<p>One thing.  I have ignored ido mode for a long time, being happy with my trusty iswitchb-mode.  I pasted your code above into my .emacs, evalled, and hit C-x C-r.  Completion did not work.  I needed to hit C-] to escape from the minibuffer.</p>
<p>Adding (ido-mode t) to my .emacs solved the problem.</p>
<p>Just wanted to point that out, in case other users not (yet) using ido try your snippet.</p>
<p>Cheers,<br />
rcy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mickey</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-402</link>
		<dc:creator>mickey</dc:creator>
		<pubDate>Thu, 27 Jan 2011 20:39:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-402</guid>
		<description><![CDATA[I prefer ido-completing-read by a long shot as the fuzzy-matching and filter-as-you-type completion makes finding things a lot easier.]]></description>
		<content:encoded><![CDATA[<p>I prefer ido-completing-read by a long shot as the fuzzy-matching and filter-as-you-type completion makes finding things a lot easier.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mickey</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-401</link>
		<dc:creator>mickey</dc:creator>
		<pubDate>Thu, 27 Jan 2011 20:38:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-401</guid>
		<description><![CDATA[Yeah, bookmarks are great but the beauty of recentf is that files I use often are naturally pushed to the top of my 50-item list of recent files, whereas the ones I use frequently (or not at all) after a while will slowly drop off the list. I&#039;ve found that by the time a file drops off the list I&#039;m probably not using it often enough to warrant a &quot;shortcut.&quot;

-Mickey.]]></description>
		<content:encoded><![CDATA[<p>Yeah, bookmarks are great but the beauty of recentf is that files I use often are naturally pushed to the top of my 50-item list of recent files, whereas the ones I use frequently (or not at all) after a while will slowly drop off the list. I&#8217;ve found that by the time a file drops off the list I&#8217;m probably not using it often enough to warrant a &#8220;shortcut.&#8221;</p>
<p>-Mickey.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.masteringemacs.org/articles/2011/01/27/find-files-faster-recent-files-package/#comment-400</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 27 Jan 2011 18:57:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=311#comment-400</guid>
		<description><![CDATA[@tom and there&#039;s some code on emacswiki to make bookmarks usable from your shell so you can cp foo $bm/bar or cd $bm]]></description>
		<content:encoded><![CDATA[<p>@tom and there&#8217;s some code on emacswiki to make bookmarks usable from your shell so you can cp foo $bm/bar or cd $bm</p>
]]></content:encoded>
	</item>
</channel>
</rss>
