<?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: Full text searching in Info mode with Apropos</title>
	<atom:link href="http://www.masteringemacs.org/articles/2011/08/04/full-text-searching-info-mode-apropos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.masteringemacs.org/articles/2011/08/04/full-text-searching-info-mode-apropos/</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: Vedang</title>
		<link>http://www.masteringemacs.org/articles/2011/08/04/full-text-searching-info-mode-apropos/#comment-19669</link>
		<dc:creator>Vedang</dc:creator>
		<pubDate>Thu, 17 Jan 2013 09:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=434#comment-19669</guid>
		<description><![CDATA[Thanks! This is going straight into my .emacs.]]></description>
		<content:encoded><![CDATA[<p>Thanks! This is going straight into my .emacs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://www.masteringemacs.org/articles/2011/08/04/full-text-searching-info-mode-apropos/#comment-1410</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Mon, 08 Aug 2011 01:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=434#comment-1410</guid>
		<description><![CDATA[If you&#039;ve not played with the info reader much, then two other terribly-useful things for Finding Stuff in the info manuals are:

1) The index. Upper- and lower-case i are bound to the index search commands. I find the former more useful, myself. Indexes are manual-specific.

2) Interactive search. C-s will first search within the current node, but if you type it again after the first failure, it will go on and search other nodes within the current manual, taking you to whatever the next match is.

info-apropos is different in that it searches &lt;strong&gt;all&lt;/strong&gt; manuals.]]></description>
		<content:encoded><![CDATA[<p>If you&#8217;ve not played with the info reader much, then two other terribly-useful things for Finding Stuff in the info manuals are:</p>
<p>1) The index. Upper- and lower-case i are bound to the index search commands. I find the former more useful, myself. Indexes are manual-specific.</p>
<p>2) Interactive search. C-s will first search within the current node, but if you type it again after the first failure, it will go on and search other nodes within the current manual, taking you to whatever the next match is.</p>
<p>info-apropos is different in that it searches <strong>all</strong> manuals.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phil</title>
		<link>http://www.masteringemacs.org/articles/2011/08/04/full-text-searching-info-mode-apropos/#comment-1409</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Mon, 08 Aug 2011 00:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=434#comment-1409</guid>
		<description><![CDATA[I use the following bindings for the various apropos commands:
&lt;pre&gt;
;; Custom &#039;apropos&#039; key bindings
(global-set-key (kbd &quot;C-h C-a&quot;) &#039;Apropos-Prefix)
(define-prefix-command &#039;Apropos-Prefix nil &quot;Apropos (a,d,f,i,l,v,C-v)&quot;)
(define-key Apropos-Prefix (kbd &quot;a&quot;)   &#039;apropos)
(define-key Apropos-Prefix (kbd &quot;C-a&quot;) &#039;apropos)
(define-key Apropos-Prefix (kbd &quot;d&quot;)   &#039;apropos-documentation)
(define-key Apropos-Prefix (kbd &quot;f&quot;)   &#039;apropos-command)
(define-key Apropos-Prefix (kbd &quot;c&quot;)   &#039;apropos-command)
(define-key Apropos-Prefix (kbd &quot;i&quot;)   &#039;info-apropos)
(define-key Apropos-Prefix (kbd &quot;l&quot;)   &#039;apropos-library)
(define-key Apropos-Prefix (kbd &quot;v&quot;)   &#039;apropos-variable)
(define-key Apropos-Prefix (kbd &quot;C-v&quot;) &#039;apropos-value)
&lt;/pre&gt;

And, of course, if I forget what any of those letters mean, C-h at the prompt details the bindings.]]></description>
		<content:encoded><![CDATA[<p>I use the following bindings for the various apropos commands:</p>
<pre>
;; Custom 'apropos' key bindings
(global-set-key (kbd "C-h C-a") 'Apropos-Prefix)
(define-prefix-command 'Apropos-Prefix nil "Apropos (a,d,f,i,l,v,C-v)")
(define-key Apropos-Prefix (kbd "a")   'apropos)
(define-key Apropos-Prefix (kbd "C-a") 'apropos)
(define-key Apropos-Prefix (kbd "d")   'apropos-documentation)
(define-key Apropos-Prefix (kbd "f")   'apropos-command)
(define-key Apropos-Prefix (kbd "c")   'apropos-command)
(define-key Apropos-Prefix (kbd "i")   'info-apropos)
(define-key Apropos-Prefix (kbd "l")   'apropos-library)
(define-key Apropos-Prefix (kbd "v")   'apropos-variable)
(define-key Apropos-Prefix (kbd "C-v") 'apropos-value)
</pre>
<p>And, of course, if I forget what any of those letters mean, C-h at the prompt details the bindings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Emacs Info Apropos Command &#124; Irreal</title>
		<link>http://www.masteringemacs.org/articles/2011/08/04/full-text-searching-info-mode-apropos/#comment-1399</link>
		<dc:creator>The Emacs Info Apropos Command &#124; Irreal</dc:creator>
		<pubDate>Fri, 05 Aug 2011 18:26:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=434#comment-1399</guid>
		<description><![CDATA[[...] not already on the proper node. Now Mickey over at Mastering Emacs has written an excellent post on Full Text Searching In Info Mode With Apropos that showed me how to solve that [...]]]></description>
		<content:encoded><![CDATA[<p>[...] not already on the proper node. Now Mickey over at Mastering Emacs has written an excellent post on Full Text Searching In Info Mode With Apropos that showed me how to solve that [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Seth</title>
		<link>http://www.masteringemacs.org/articles/2011/08/04/full-text-searching-info-mode-apropos/#comment-1398</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Fri, 05 Aug 2011 16:10:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.masteringemacs.org/?p=434#comment-1398</guid>
		<description><![CDATA[apropos-zippy!]]></description>
		<content:encoded><![CDATA[<p>apropos-zippy!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
